Files
cypress/system-tests/test/plugins_not_supported.ts
Alejandro Estrada d94c586f10 fix: update not supported plugins errors (#21169)
* fix: update not supported plugins errors

* Add tests

* Add tests

* Fix test

* Update with feedback
2022-04-28 22:59:21 +10:00

17 lines
335 B
TypeScript

import systemTests from '../lib/system-tests'
describe('plugins not supported in v10', () => {
systemTests.setup()
systemTests.it('@cypress/code-coverage', {
browser: 'electron',
project: 'plugin-code-coverage',
spec: '*',
snapshot: true,
expectedExitCode: 1,
config: {
video: false,
},
})
})