-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcypress.config.ts
59 lines (51 loc) · 1.47 KB
/
cypress.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { defineConfig } from 'cypress';
const createEsbuildPlugin =
require('@badeball/cypress-cucumber-preprocessor/esbuild').createEsbuildPlugin;
const createBundler = require('@bahmutov/cypress-esbuild-preprocessor');
const nodePolyfills =
require('@esbuild-plugins/node-modules-polyfill').NodeModulesPolyfillPlugin;
const addCucumberPreprocessorPlugin =
require('@badeball/cypress-cucumber-preprocessor').addCucumberPreprocessorPlugin;
const allureWriter = require('@shelex/cypress-allure-plugin/writer');
export default defineConfig({
defaultCommandTimeout: 20000,
pageLoadTimeout: 120000,
requestTimeout: 10000,
responseTimeout: 60000,
execTimeout: 60000,
taskTimeout: 60000,
screenshotsFolder: 'results/screenshots',
videosFolder: 'results/videos',
downloadsFolder: 'results/downloads',
viewportWidth: 1920,
viewportHeight: 1080,
reporter: 'cypress-multi-reporters',
reporterOptions: {
configFile: 'reporter-config.json',
},
retries: {
runMode: 0,
openMode: 0,
},
env: {
allure: true,
allureClearSkippedTests: true,
allureResultsPath: 'results/allure',
TAGS: 'not @ignore',
'hide-xhr': false,
},
e2e: {
specPattern: 'cypress/e2e/**/*.{feature,features}',
setupNodeEvents(on, config) {
addCucumberPreprocessorPlugin(on, config); // to allow json to be produced
on(
'file:preprocessor',
createBundler({
plugins: [nodePolyfills(), createEsbuildPlugin(config)],
}),
);
allureWriter(on, config);
return config;
},
},
});