2022-06-28 18:07:31 +00:00
|
|
|
const { defineConfig } = require('cypress');
|
|
|
|
module.exports = defineConfig({
|
|
|
|
projectId: 'et4snf',
|
|
|
|
|
|
|
|
e2e: {
|
|
|
|
baseUrl: 'http://localhost:4200',
|
|
|
|
fileServerFolder: '.',
|
|
|
|
fixturesFolder: false,
|
|
|
|
specPattern: './src/integration/*.ts',
|
|
|
|
excludeSpecPattern: '**/*.js',
|
|
|
|
modifyObstructiveCode: false,
|
|
|
|
supportFile: './src/support/index.ts',
|
|
|
|
video: true,
|
2022-07-08 12:54:56 +00:00
|
|
|
videoUploadOnPasses: false,
|
2022-06-28 18:07:31 +00:00
|
|
|
videosFolder: '../../dist/cypress/apps/explorer-e2e/videos',
|
|
|
|
screenshotsFolder: '../../dist/cypress/apps/explorer-e2e/screenshots',
|
|
|
|
chromeWebSecurity: false,
|
2022-07-14 15:49:20 +00:00
|
|
|
viewportWidth: 1440,
|
|
|
|
viewportHeight: 900,
|
2022-06-28 18:07:31 +00:00
|
|
|
},
|
|
|
|
});
|