Smoke tests for verifying Cypress runs, plus basic API tests for health and sessions endpoints.
13 lines
328 B
JavaScript
13 lines
328 B
JavaScript
const { defineConfig } = require('cypress');
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
supportFile: 'cypress/support/e2e.js',
|
|
specPattern: 'cypress/e2e/**/*.cy.{js,ts}',
|
|
defaultCommandTimeout: 10000,
|
|
requestTimeout: 10000,
|
|
video: false,
|
|
screenshotOnRunFailure: true,
|
|
},
|
|
});
|