mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-25 10:19:30 -05:00
34fe1ae8e2
* chore: update playwright-webkit from 1.24.2 to 1.56.1 * chore: fix cookies.cy.js tests in webkit by checking for strict domain match first when calling getCookie and falling back to apex domain * misc: add changelog item
14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import systemTests from '../lib/system-tests'
|
|
|
|
describe('module API', () => {
|
|
systemTests.it('can run module API Mocha spec', {
|
|
timeout: 240000,
|
|
dockerImage: 'cypress/base-internal:22.19.0-trixie',
|
|
withBinary: true,
|
|
project: 'module-api',
|
|
browser: 'electron',
|
|
command: 'yarn',
|
|
args: ['test'],
|
|
})
|
|
})
|