mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-03 21:40:28 -05:00
13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import systemTests from '../lib/system-tests'
|
|
|
|
describe('e2e headed', function () {
|
|
systemTests.setup()
|
|
|
|
systemTests.it(`runs multiple specs in headed mode`, {
|
|
project: 'e2e',
|
|
headed: true,
|
|
spec: 'a_record.cy.js,b_record.cy.js,simple_passing.cy.js',
|
|
expectedExitCode: 0,
|
|
})
|
|
})
|