Files
cypress/system-tests/test-binary/module_api_spec.ts
T
Bill Glesias 34fe1ae8e2 misc: update playwright-webkit from 1.24.2 to 1.56.1 and base-internal image from Debian Bullseye to Debian Trixie (#32852)
* 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
2025-10-30 12:05:00 -04:00

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