forked from cvat-ai/cvat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcypress.config.js
36 lines (35 loc) · 1.18 KB
/
cypress.config.js
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
const { defineConfig } = require('cypress');
const plugins = require('./cypress/plugins/index');
module.exports = defineConfig({
video: false,
viewportWidth: 1300,
viewportHeight: 960,
defaultCommandTimeout: 25000,
downloadsFolder: 'cypress/fixtures',
env: {
user: 'admin',
email: '[email protected]',
password: '12qwaszx',
},
e2e: {
setupNodeEvents(on, config) {
return plugins(on, config);
},
testIsolation: false,
baseUrl: 'http://localhost:8080',
specPattern: [
'cypress/e2e/auth_page.js',
'cypress/e2e/features/*.js',
'cypress/e2e/actions_tasks/**/*.js',
'cypress/e2e/actions_tasks2/**/*.js',
'cypress/e2e/actions_tasks3/**/*.js',
'cypress/e2e/actions_objects/**/*.js',
'cypress/e2e/actions_objects2/**/*.js',
'cypress/e2e/issues_prs/**/*.js',
'cypress/e2e/issues_prs2/**/*.js',
'cypress/e2e/actions_users/**/*.js',
'cypress/e2e/actions_projects_models/**/*.js',
'cypress/e2e/remove_users_tasks_projects_organizations.js',
],
},
});