-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 2.81 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 2.81 KB
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
34
35
36
37
38
39
40
{
"name": "playwright-tests",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test:data_service": "npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=\"@data @service\"",
"test:smoke_api": "npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=\"@smoke @api\"",
"test:regression_api": "npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=\"@regression @api\"",
"test:regression_e2e": "cross-env TEST_TYPE=Regression npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=\"@regression @e2e\"",
"test:regression_e2e_epic1": "cross-env TEST_TYPE=RegressionEpic1 npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=@epic1-high",
"test:regression_e2e_epic1Med": "cross-env TEST_TYPE=RegressionEpic1Med npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=@epic1-med",
"test:regression_e2e_epic2": "cross-env TEST_TYPE=RegressionEpic2 npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=@epic2-high",
"test:regression_e2e_epic2Med": "cross-env TEST_TYPE=RegressionEpic2Med npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=@epic2-med",
"test:regression_e2e_epic3": "cross-env TEST_TYPE=RegressionEpic3 npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=@epic3-high",
"test:regression_e2e_epic3Med": "cross-env TEST_TYPE=RegressionEpic3Med npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=@epic3-med",
"test:regression_e2e_epic4d": "cross-env TEST_TYPE=RegressionEpic4d npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=@epic4d-",
"test:smoke_e2e": "cross-env TEST_TYPE=RegressionEpic4d npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=@epic4d-",
"test:smoke_e2e1": "cross-env TEST_TYPE=SMOKE npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=\"@smoke @e2e\"",
"test": "npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=\"@smoke @e2e\"",
"test:dummy": "npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=\"@dummy \"",
"test:ut": "npx playwright test --project=dev --config=src/config/playwright.config.ts --grep=\"@ut\"",
"lint": "eslint . --ext .ts",
"build": "tsc -p tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@azure/storage-blob": "^12.27.0",
"dotenv": "16.4.7",
"parquetjs": "0.11.2"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"@types/node": "22.13.14",
"@types/parquetjs": "0.10.6",
"cross-env": "^7.0.3"
}
}