mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2026-04-02 18:05:23 +00:00
testing
This commit is contained in:
18
playwright.config.ts
Normal file
18
playwright.config.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import type { PlaywrightTestConfig } from '@playwright/test'
|
||||
|
||||
const config: PlaywrightTestConfig = {
|
||||
use: {
|
||||
video: 'on-first-retry',
|
||||
baseURL: 'http://localhost:1234',
|
||||
actionTimeout: 3_000,
|
||||
},
|
||||
testDir: './test',
|
||||
testMatch: /.*\.ts/,
|
||||
webServer: {
|
||||
command: 'pnpm run dev',
|
||||
port: 1234,
|
||||
reuseExistingServer: true,
|
||||
},
|
||||
}
|
||||
|
||||
export default config
|
||||
Reference in New Issue
Block a user