notebooks/components/crud-web-apps/jupyter/frontend/playwright.config.ts

21 lines
390 B
TypeScript

import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
use: {
baseURL: 'http://localhost:4200',
video: 'off',
},
projects: [
{
name: 'Chromium',
use: { ...devices['Desktop Chrome'] },
},
{
name: 'Firefox',
use: { ...devices['Desktop Firefox'] },
},
],
testDir: 'tests/e2e',
reporter: 'list',
});