mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-21 22:50:49 -06:00
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
329 B
JavaScript
13 lines
329 B
JavaScript
const systemTests = require('../lib/system-tests').default
|
|
|
|
describe('e2e issue 5475 history pushState hangs', function () {
|
|
systemTests.setup()
|
|
|
|
systemTests.it('fails when remote debugging port cannot be connected to', {
|
|
spec: 'issue_5475*',
|
|
browser: 'electron',
|
|
expectedExitCode: 1,
|
|
snapshot: true,
|
|
})
|
|
})
|