mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-12 02:00:06 -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
244 B
JavaScript
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,
|
|
})
|
|
})
|
|
})
|