mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-24 16:08:33 -05:00
ffd3627e43
Co-authored-by: Ryan Manuel <ryanm@cypress.io>
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'],
|
|
})
|
|
})
|