-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1001 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 1001 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
{
"name": "playwright-essential-training-abstractions-fixtures-and-complex-scenarios-4278224",
"version": "1.0.0",
"description": "This is the repository for the LinkedIn Learning course `playwright-essential-training`. The full course is available from [LinkedIn Learning][lil-course-url].",
"main": "index.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "cd bagel-shop && npm run start",
"install:bagel-shop": "cd bagel-shop && npm install",
"test": "npx playwright test",
"test:chromium": "npx playwright test --project chromium",
"test:first": "npx playwright test --grep @first",
"test:local": "BASE_URL=http://localhost:4200 npx playwright test",
"test:report": "npx playwright test && npx playwright show-report",
"test:ui": "npx playwright test --ui"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.51.1",
"@types/node": "^22.13.4",
"dotenv": "^16.4.7"
}
}