mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-09 00:30:16 -06:00
* fix: update not supported plugins errors * Add tests * Add tests * Fix test * Update with feedback
17 lines
335 B
TypeScript
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,
|
|
},
|
|
})
|
|
})
|