mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-02 04:50:06 -05:00
a045e4f59a
Co-authored-by: Brian Mann <brian.mann86@gmail.com> Co-authored-by: Zach Bloomquist <git@chary.us> Co-authored-by: Zach Bloomquist <github@chary.us>
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
const systemTests = require('../lib/system-tests').default
|
|
|
|
describe('e2e issue 674', () => {
|
|
systemTests.setup()
|
|
|
|
// https://github.com/cypress-io/cypress/issues/674
|
|
systemTests.it('fails', {
|
|
spec: 'issue_674_spec.js',
|
|
snapshot: true,
|
|
expectedExitCode: 1,
|
|
})
|
|
})
|