12345678910111213141516171819202122 |
- var baseConfig = require('@jupyterlab/galata/lib/playwright-config');
- module.exports = {
- ...baseConfig,
- projects: [
- {
- name: 'galata',
- testMatch: 'test/galata/**'
- },
- {
- name: 'jupyterlab',
- testMatch: 'test/jupyterlab/**'
- }
- ],
-
- preserveOutput: 'failures-only',
-
- retries: 1
- };
|