mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-22 15:12:27 -05:00
dd0fc9b9f7
Co-authored-by: Emily Rohrbough <emilyrohrbough@users.noreply.github.com>
15 lines
389 B
JavaScript
15 lines
389 B
JavaScript
const systemTests = require('../lib/system-tests').default
|
|
|
|
describe('e2e issue 6407', () => {
|
|
systemTests.setup()
|
|
|
|
// https://github.com/cypress-io/cypress/issues/6407
|
|
it('throws if mutating read-only config with test configuration', function () {
|
|
return systemTests.exec(this, {
|
|
spec: 'issue_6407_spec.js',
|
|
snapshot: true,
|
|
expectedExitCode: 1,
|
|
})
|
|
})
|
|
})
|