mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-02 20:50:01 -06:00
14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
import systemTests from '../lib/system-tests'
|
|
|
|
describe('module API', () => {
|
|
systemTests.it('can run module API Mocha spec', {
|
|
timeout: 240000,
|
|
dockerImage: 'cypress/base:12',
|
|
withBinary: true,
|
|
project: 'module-api',
|
|
browser: 'electron',
|
|
command: 'yarn',
|
|
args: ['test'],
|
|
})
|
|
})
|