mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-01-09 05:26:58 -06:00
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
import { defineConfig } from 'cypress';
|
|
export default defineConfig({
|
|
env: {},
|
|
e2e: {
|
|
/*setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},*/
|
|
baseUrl: 'http://localhost',
|
|
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
|
|
experimentalRunAllSpecs: true,
|
|
},
|
|
});
|