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: '',
|
2023-09-15 16:14:29 +08:00
|
|
|
trace: 'on-first-retry',
|
2023-03-20 20:49:22 +08:00
|
|
|
video: 'retain-on-failure',
|
2021-11-08 05:53:56 +08:00
|
|
|
},
|
2023-02-09 16:50:23 +08:00
|
|
|
retries: 1,
|
|
|
|
webServer: [
|
|
|
|
{
|
|
|
|
command: 'jlpm start',
|
|
|
|
port: 8888,
|
|
|
|
timeout: 120 * 1000,
|
2023-03-20 20:49:22 +08:00
|
|
|
reuseExistingServer: true,
|
2023-05-25 19:42:44 +08:00
|
|
|
stdout: 'pipe',
|
2023-03-20 20:49:22 +08:00
|
|
|
},
|
|
|
|
],
|
2021-11-08 05:53:56 +08:00
|
|
|
};
|