mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-08 07:50:24 -05:00
abea165832
* fix: do not include non specs when globbing using --spec in run mode * update pattern * fix test * update cdp spec * wip - updates * update snapshots * update non-proxied spec * update snaps * update snaps * rename specs * update spec * wip - snapshots * snaps * snaps * update spec names * update * update test * snaps * update snap and spec * snaps * correct spec pattern * snaps * revert * update spec and snapshots * fix test * update tests * fix test * update test * update snapshot * update snaps * include coffee in specPattern * update snapshots * update snaps * rename specs * snaps * update test * update snapshot * update * snaps * update snap * update snaps * fix test * unskip test * snaps * add test
14 lines
372 B
JavaScript
14 lines
372 B
JavaScript
module.exports = {
|
|
'e2e': {
|
|
'specPattern': 'cypress/e2e/*',
|
|
'supportFile': false,
|
|
setupNodeEvents (on, config) {
|
|
process.stderr.write('Plugin Loaded\n')
|
|
process.stderr.write(`Plugin Node version: ${process.versions.node}\n`)
|
|
process.stderr.write(`Plugin Electron version: ${process.versions.electron}\n`)
|
|
|
|
return config
|
|
},
|
|
},
|
|
}
|