index.js 356 B

1234567891011
  1. // https://docs.cypress.io/guides/guides/plugins-guide.html
  2. module.exports = (on, config) => {
  3. return Object.assign({}, config, {
  4. fixturesFolder: 'tests/e2e/fixtures',
  5. integrationFolder: 'tests/e2e/specs',
  6. screenshotsFolder: 'tests/e2e/screenshots',
  7. videosFolder: 'tests/e2e/videos',
  8. supportFile: 'tests/e2e/support/index.js'
  9. })
  10. }