mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-14 11:10:22 -06:00
* chore: disable firefox for issue 5016 system test * link to flake issue for firefox screenshot timeout * empty commit to trigger ci --------- Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
24 lines
801 B
JavaScript
24 lines
801 B
JavaScript
const systemTests = require('../lib/system-tests').default
|
|
|
|
describe('e2e issue 5016 - screenshot times out after clicking target _blank', function () {
|
|
systemTests.setup()
|
|
|
|
// this test originally was scoped to !webkit, but Firefox has a (non-regression) flake
|
|
// issue: https://github.com/cypress-io/cypress/issues/29116
|
|
systemTests.it('fails but does not timeout taking screenshot', {
|
|
project: 'config-screenshot-on-failure-enabled',
|
|
sanitizeScreenshotDimensions: true,
|
|
snapshot: true,
|
|
expectedExitCode: 1,
|
|
browser: 'chrome',
|
|
})
|
|
|
|
systemTests.it('fails but does not timeout taking screenshot', {
|
|
project: 'config-screenshot-on-failure-enabled',
|
|
sanitizeScreenshotDimensions: true,
|
|
snapshot: true,
|
|
expectedExitCode: 1,
|
|
browser: 'electron',
|
|
})
|
|
})
|