forked from lihejia/WebAI2API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplaywright.config.js
More file actions
33 lines (32 loc) · 816 Bytes
/
playwright.config.js
File metadata and controls
33 lines (32 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: './e2e',
timeout: 120_000,
retries: 0,
workers: 1,
use: {
headless: false,
viewport: { width: 1280, height: 800 },
storageState: './data/deepseek-auth.json',
trace: 'on-first-retry',
},
projects: [
{
name: 'chromium',
use: { browserName: 'chromium' },
testMatch: 'deepseek.test.js',
},
{
name: 'doubao_video',
use: {
browserName: 'chromium',
storageState: './data/doubao-auth.json',
},
testMatch: 'doubao_video.test.js',
},
{
name: 'api',
testMatch: 'api.test.js',
},
],
});