You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
331 B
10 lines
331 B
6 years ago
|
// https://docs.cypress.io/guides/guides/plugins-guide.html
|
||
|
|
||
|
module.exports = (on, config) => Object.assign({}, config, {
|
||
|
fixturesFolder: 'tests/e2e/fixtures',
|
||
|
integrationFolder: 'tests/e2e/specs',
|
||
|
screenshotsFolder: 'tests/e2e/screenshots',
|
||
|
videosFolder: 'tests/e2e/videos',
|
||
|
supportFile: 'tests/e2e/support/index.js'
|
||
|
})
|