We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7791c2 commit da82020Copy full SHA for da82020
test/cypress/config/ci.js
@@ -0,0 +1,22 @@
1
+const { defineConfig } = require('cypress');
2
+
3
+module.exports = defineConfig({
4
+ requestTimeout: 30000,
5
+ defaultCommandTimeout: 20000,
6
+ reporter: 'cypress-multi-reporters',
7
+ reporterOptions: {
8
+ configFile: 'multi-reporter.json'
9
+ },
10
+ videosFolder: 'results/videos',
11
+ screenshotsFolder: 'results/screenshots',
12
+ env: {
13
+ swaggerBase: '{{baseUrl}}/api/schema',
14
+ RETRIES: 4
15
16
+ e2e: {
17
+ // baseUrl: '{{baseUrl}}',
18
+ setupNodeEvents(on, config) {
19
+ return require('../plugins/index.js')(on, config);
20
21
+ }
22
+});
test/cypress/config/ci.json
test/cypress/config/dev.json
0 commit comments