@azure/playwright 1.0.1-alpha.20251013.1 → 1.0.1-alpha.20251014.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/playwright",
|
|
3
|
-
"version": "1.0.1-alpha.
|
|
3
|
+
"version": "1.0.1-alpha.20251014.1",
|
|
4
4
|
"description": "Package to integrate your Playwright test suite with Azure Playwright service",
|
|
5
5
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/loadtesting/playwright/README.md",
|
|
6
6
|
"sdk-type": "client",
|
|
@@ -51,21 +51,25 @@
|
|
|
51
51
|
],
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@azure/core-auth": "^1.9.0",
|
|
54
|
+
"@azure/core-rest-pipeline": "^1.18.0",
|
|
54
55
|
"@azure/logger": "^1.1.4",
|
|
55
|
-
"tslib": "^2.8.1"
|
|
56
|
-
"@azure/core-rest-pipeline": "^1.18.0"
|
|
56
|
+
"tslib": "^2.8.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
+
"@azure/identity": "4.11.1",
|
|
59
60
|
"@playwright/test": "^1.51.1",
|
|
60
61
|
"@types/debug": "^4.1.12",
|
|
61
62
|
"@types/node": "^20.19.0",
|
|
62
63
|
"@vitest/browser": "^3.2.3",
|
|
63
64
|
"@vitest/coverage-istanbul": "^3.2.3",
|
|
65
|
+
"cross-env": "^7.0.3",
|
|
64
66
|
"eslint": "^9.33.0",
|
|
65
67
|
"playwright": "^1.50.1",
|
|
68
|
+
"prettier": "^3.6.2",
|
|
69
|
+
"rimraf": "^6.0.1",
|
|
70
|
+
"tshy": "^3.0.0",
|
|
66
71
|
"typescript": "~5.9.3",
|
|
67
72
|
"vitest": "^3.2.3",
|
|
68
|
-
"@azure/identity": "4.11.1",
|
|
69
73
|
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
70
74
|
"@azure/dev-tool": "^1.0.0",
|
|
71
75
|
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
|
|
@@ -106,11 +110,11 @@
|
|
|
106
110
|
"scripts": {
|
|
107
111
|
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
|
|
108
112
|
"build:samples": "echo Skipped.",
|
|
109
|
-
"check-format": "
|
|
110
|
-
"clean": "
|
|
113
|
+
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"",
|
|
114
|
+
"clean": "rimraf --glob dist *.log dist-test temp types *.tgz *.xml samples/**/test-results/",
|
|
111
115
|
"execute:samples": "echo skipped",
|
|
112
116
|
"extract-api": "dev-tool run extract-api",
|
|
113
|
-
"format": "
|
|
117
|
+
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"",
|
|
114
118
|
"lint": "eslint package.json CHANGELOG.md README.md src",
|
|
115
119
|
"lint:fix": "eslint package.json CHANGELOG.md README.md src --fix --fix-type [problem,suggestion]",
|
|
116
120
|
"pack": "pnpm pack 2>&1",
|