notebook/ui-tests/playwright.config.ts
Jeremy Tuloup 61b2ad27ea
Use Playwright webServer (#6720)
* Use Playwright `webServer`

* Try `jlpm start`

* Lint
2023-02-09 09:50:23 +01:00

19 lines
320 B
TypeScript

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