mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-25 16:39:04 -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>
14 lines
356 B
JavaScript
14 lines
356 B
JavaScript
const systemTests = require('../lib/system-tests').default
|
|
|
|
describe('e2e window.open', () => {
|
|
systemTests.setup()
|
|
|
|
// NOTE: skipping this for now due to snap-shot-it monkey patching causing test failures
|
|
it.skip('passes', function () {
|
|
return systemTests.exec(this, {
|
|
spec: 'window_open_spec.coffee',
|
|
snapshot: true,
|
|
})
|
|
})
|
|
})
|