notebook/ui-tests/playwright.config.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
375 B
TypeScript
Raw Permalink Normal View History

2021-11-08 05:53:56 +08:00
import baseConfig from '@jupyterlab/galata/lib/playwright-config';
module.exports = {
...baseConfig,
use: {
2022-10-03 18:24:38 +08:00
appPath: '',
trace: 'on-first-retry',
video: 'retain-on-failure',
2021-11-08 05:53:56 +08:00
},
retries: 1,
webServer: [
{
command: 'jlpm start',
port: 8888,
timeout: 120 * 1000,
reuseExistingServer: true,
stdout: 'pipe',
},
],
2021-11-08 05:53:56 +08:00
};