mirror of
https://github.com/jupyter/notebook.git
synced 2024-11-21 01:11:21 +08:00
7927b21f4a
* Enable the Playwright trace * Switch to `'on-first-retry'`
21 lines
375 B
TypeScript
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',
|
|
},
|
|
],
|
|
};
|