Yet another huge refacto... While implementing undo and redo features I understood that I updated the stored typebot too many times (i.e. on each key input) so I had to rethink it entirely. I also moved around some files.
35 lines
951 B
TypeScript
35 lines
951 B
TypeScript
import { devices, PlaywrightTestConfig } from '@playwright/test'
|
|
import path from 'path'
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
globalSetup: require.resolve(path.join(__dirname, 'playwright/global-setup')),
|
|
testDir: path.join(__dirname, 'playwright/tests'),
|
|
timeout: 10 * 1000,
|
|
expect: {
|
|
timeout: 5000,
|
|
},
|
|
retries: 2,
|
|
workers: process.env.CI ? 1 : undefined,
|
|
reporter: 'html',
|
|
maxFailures: process.env.CI ? 10 : undefined,
|
|
use: {
|
|
actionTimeout: 0,
|
|
baseURL: process.env.PLAYWRIGHT_BUILDER_TEST_BASE_URL,
|
|
trace: 'on-first-retry',
|
|
storageState: path.join(__dirname, 'playwright/authenticatedState.json'),
|
|
video: 'retain-on-failure',
|
|
locale: 'en-US',
|
|
},
|
|
outputDir: path.join(__dirname, 'playwright/test-results/'),
|
|
projects: [
|
|
{
|
|
name: 'Chrome',
|
|
use: {
|
|
...devices['Desktop Chrome'],
|
|
viewport: { width: 1400, height: 1000 },
|
|
},
|
|
},
|
|
],
|
|
}
|
|
export default config
|