13 lines
274 B
JavaScript
13 lines
274 B
JavaScript
import { defineConfig } from '@playwright/test';
|
|
import path from 'path';
|
|
|
|
export default defineConfig({
|
|
testDir: '.',
|
|
globalSetup: path.resolve(__dirname, 'global-setup.js'),
|
|
timeout: 120_000,
|
|
reporter: 'line',
|
|
use: {
|
|
headless: true,
|
|
},
|
|
});
|