You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
827 B
JavaScript
29 lines
827 B
JavaScript
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: 'admin@localhost.company',
|
|
password: '12qwaszx',
|
|
},
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
return plugins(on, config);
|
|
},
|
|
testIsolation: false,
|
|
baseUrl: 'http://localhost:8080',
|
|
specPattern: [
|
|
'cypress/e2e/auth_page.js',
|
|
'cypress/e2e/canvas3d_functionality/*.js',
|
|
'cypress/e2e/canvas3d_functionality_2/*.js',
|
|
'cypress/e2e/remove_users_tasks_projects_organizations.js',
|
|
],
|
|
},
|
|
});
|