notebook/ui-tests/playwright.config.ts
Jeremy Tuloup 7927b21f4a
Enable the Playwright trace (#7050)
* Enable the Playwright trace

* Switch to `'on-first-retry'`
2023-09-15 10:14:29 +02:00

21 lines
375 B
TypeScript

import baseConfig from '@jupyterlab/galata/lib/playwright-config';
module.exports = {
...baseConfig,
use: {
appPath: '',
trace: 'on-first-retry',
video: 'retain-on-failure',
},
retries: 1,
webServer: [
{
command: 'jlpm start',
port: 8888,
timeout: 120 * 1000,
reuseExistingServer: true,
stdout: 'pipe',
},
],
};