mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-21 06:30:49 -06:00
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
import mockedEnv from 'mocked-env'
|
|
import systemTests from '../lib/system-tests'
|
|
|
|
describe('e2e cdp', function () {
|
|
systemTests.setup()
|
|
let restoreEnv: Function
|
|
|
|
beforeEach(() => {
|
|
restoreEnv = mockedEnv({
|
|
CYPRESS_REMOTE_DEBUGGING_PORT: '7777',
|
|
})
|
|
})
|
|
|
|
afterEach(() => {
|
|
restoreEnv()
|
|
})
|
|
|
|
// NOTE: this test takes almost a minute and is largely redundant with protocol_spec
|
|
systemTests.it.skip('fails when remote debugging port cannot be connected to', {
|
|
project: 'remote-debugging-port-removed',
|
|
spec: 'spec.ts',
|
|
browser: 'chrome',
|
|
expectedExitCode: 1,
|
|
})
|
|
|
|
// https://github.com/cypress-io/cypress/issues/5685
|
|
systemTests.it('handles disconnections as expected', {
|
|
project: 'remote-debugging-disconnect',
|
|
spec: 'spec.ts',
|
|
browser: 'chrome',
|
|
expectedExitCode: 1,
|
|
snapshot: true,
|
|
onStdout: (stdout) => {
|
|
// the location of this warning is non-deterministic
|
|
return stdout.replace('The automation client disconnected. Cannot continue running tests.\n', '')
|
|
},
|
|
})
|
|
})
|