Files
cypress/system-tests/test/window_open_spec.js
Jessica Sachs a045e4f59a chore: move server e2e tests to system-tests (#16354)
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>
2021-10-18 19:53:14 +00:00

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,
})
})
})