chart/playwright.config.js

16 lines
340 B
JavaScript
Raw Permalink Normal View History

import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: './test',
testMatch: '**/*.spec.js',
use: {
baseURL: 'http://localhost:8082',
},
webServer: {
command: 'npx vite --port 8082',
url: 'http://localhost:8082',
timeout: 120000,
reuseExistingServer: !process.env.CI,
},
});