mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
35 lines
592 B
TypeScript
35 lines
592 B
TypeScript
import { PlaywrightTestConfig } from '@playwright/test';
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
testDir: '.',
|
|
timeout: 10000,
|
|
projects: [
|
|
{
|
|
name: 'Chromium',
|
|
use: {
|
|
browserName: 'chromium'
|
|
}
|
|
},
|
|
{
|
|
name: 'FirefoxStable',
|
|
use: {
|
|
browserName: 'firefox'
|
|
}
|
|
},
|
|
{
|
|
name: 'WebKit',
|
|
use: {
|
|
browserName: 'webkit'
|
|
}
|
|
}
|
|
],
|
|
reporter: 'list',
|
|
webServer: {
|
|
command: 'npm run start',
|
|
port: 3000,
|
|
timeout: 120000,
|
|
reuseExistingServer: !process.env.CI
|
|
}
|
|
};
|
|
export default config;
|