Files
cypress/system-tests/test-binary/module_api_spec.ts
Zach Bloomquist ffd3627e43 test: migrate module_api to system tests (#20265)
Co-authored-by: Ryan Manuel <ryanm@cypress.io>
2022-02-25 23:12:05 +00:00

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'],
})
})