16 lines
431 B
TypeScript
16 lines
431 B
TypeScript
import {defineConfig} from 'cypress';
|
|
export default defineConfig( {
|
|
e2e: {
|
|
"baseUrl": "http://localhost:8000",
|
|
specPattern: 'cypress/e2e/e2e/**/*.{spec,cy}.{js,ts}',
|
|
supportFile: 'cypress/support/e2e.ts',
|
|
},
|
|
"videoUploadOnPasses": false,
|
|
"reporter": "junit",
|
|
"reporterOptions": {
|
|
"mochaFile": "cypress/test-reports/e2e/cypress-results-[hash].xml",
|
|
"toConsole": true
|
|
},
|
|
"projectId": "msk-ee",
|
|
});
|