forked from DataDog/stickerlandia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 891 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 891 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
{
"name": "stickerlandia-e2e",
"version": "1.0.0",
"private": true,
"description": "E2E tests for Stickerlandia using Playwright",
"scripts": {
"test": "playwright test",
"test:smoke": "playwright test --project=smoke",
"test:public": "playwright test --project=public",
"test:auth": "playwright test --project=auth",
"test:authenticated": "playwright test --project=authenticated",
"test:api": "playwright test --project=api",
"test:admin": "playwright test --project=setup --project=admin",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"report": "playwright show-report",
"codegen": "playwright codegen"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^22.19.13",
"dotenv": "^16.4.7",
"typescript": "^5.7.0"
}
}