Files
cypress/system-tests/test/only_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

13 lines
244 B
JavaScript

const systemTests = require('../lib/system-tests').default
describe('e2e only spec', () => {
systemTests.setup()
it('failing', function () {
return systemTests.exec(this, {
spec: 'only*.js',
snapshot: true,
})
})
})