-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.42 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
41
42
43
44
45
{
"name": "microsoft-test-demo-01",
"version": "1.0.0",
"description": "A comprehensive Microsoft Ecosystem demonstration for software testing lifecycle concepts, showcasing Playwright, Azure DevOps, Azure Pipelines, Azure Test Plans, Power BI, Azure AI, and GitHub Copilot",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:headed": "npx playwright test --headed",
"test:report": "npx playwright show-report",
"test:coverage": "nyc npx playwright test",
"test:coverage:report": "nyc report --reporter=html",
"test:visual": "npx playwright test tests/visual.spec.js",
"test:visual:update": "npx playwright test tests/visual.spec.js --update-snapshots",
"create-baselines": "bash scripts/create-visual-baselines.sh || pwsh scripts/create-visual-baselines.ps1"
},
"_comment_create-baselines": "Tries bash first (Mac/Linux), falls back to PowerShell (Windows). Run appropriate script directly if needed.",
"keywords": [
"testing",
"playwright",
"azure",
"devops",
"microsoft",
"test-automation",
"ci-cd"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@axe-core/playwright": "^4.8.0",
"@playwright/test": "^1.41.0",
"axe-core": "^4.8.0",
"nyc": "^15.1.0"
},
"nyc": {
"reporter": [
"text",
"html",
"lcov"
],
"check-coverage": true,
"lines": 80,
"functions": 80,
"branches": 80
}
}