mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-28 02:39:31 -05:00
71d92e0e49
Co-authored-by: Emily Rohrbough <emilyrohrbough@users.noreply.github.com>
15 lines
348 B
JavaScript
15 lines
348 B
JavaScript
const systemTests = require('../lib/system-tests').default
|
|
|
|
describe('e2e uncaught support file errors', () => {
|
|
systemTests.setup()
|
|
|
|
it('failing', function () {
|
|
return systemTests.exec(this, {
|
|
project: 'uncaught-support-file',
|
|
sanitizeScreenshotDimensions: true,
|
|
snapshot: true,
|
|
expectedExitCode: 1,
|
|
})
|
|
})
|
|
})
|