-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 759 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 759 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
{
"name": "content-hub-api-test-cases",
"version": "1.0.0",
"description": "Comprehensive API test cases for Sitecore Content Hub REST API",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:content-hub": "npx playwright test tests/sitecore-content-hub-test-cases.ts",
"test:headed": "npx playwright test --headed",
"test:debug": "npx playwright test --debug",
"report": "npx playwright show-report",
"install-browsers": "npx playwright install"
},
"keywords": [
"sitecore",
"content-hub",
"api",
"testing",
"playwright"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.54.1",
"@types/node": "^24.0.13",
"dotenv": "^16.6.1"
}
}