@azure/microsoft-playwright-testing 1.0.0-alpha.20240924.2 → 1.0.0-alpha.20240926.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 +21 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/microsoft-playwright-testing",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.20240926.1",
|
|
4
4
|
"description": "Package to integrate your Playwright test suite with Microsoft Playwright Testing service",
|
|
5
5
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/playwrighttesting/microsoft-playwright-testing/README.md",
|
|
6
6
|
"sdk-type": "client",
|
|
@@ -47,49 +47,50 @@
|
|
|
47
47
|
"scripts": {
|
|
48
48
|
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
|
|
49
49
|
"build": "npm run clean && tsc -p . && dev-tool run bundle && npm run extract-api",
|
|
50
|
-
"build:test": "tsc -p . && dev-tool run bundle",
|
|
51
50
|
"build:samples": "echo obsolete",
|
|
51
|
+
"build:test": "tsc -p . && dev-tool run bundle",
|
|
52
52
|
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"",
|
|
53
53
|
"clean": "rimraf --glob dist *.log dist-test temp types *.tgz *.xml samples/**/test-results/",
|
|
54
54
|
"execute:samples": "echo skipped",
|
|
55
|
+
"extract-api": "dev-tool run extract-api",
|
|
55
56
|
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples/**/*.ts\" \"*.{js,json}\"",
|
|
57
|
+
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
56
58
|
"integration-test:browser": "echo skipped",
|
|
57
59
|
"integration-test:node": "echo skipped",
|
|
58
|
-
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
|
|
59
|
-
"lint:fix": "eslint package.json api-extractor.json CHANGELOG.md README.md src --fix --fix-type [problem,suggestion]",
|
|
60
60
|
"lint": "eslint package.json api-extractor.json CHANGELOG.md README.md src",
|
|
61
|
+
"lint:fix": "eslint package.json api-extractor.json CHANGELOG.md README.md src --fix --fix-type [problem,suggestion]",
|
|
61
62
|
"pack": "npm pack 2>&1",
|
|
63
|
+
"test": "npm run build:test && npm run unit-test && npm run integration-test",
|
|
62
64
|
"test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser",
|
|
63
65
|
"test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node",
|
|
64
|
-
"test": "npm run
|
|
66
|
+
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
|
65
67
|
"unit-test:browser": "echo skipped",
|
|
66
68
|
"unit-test:node": "dev-tool run test:node-ts-input --no-test-proxy -- --timeout 12000 'test/**/*.spec.ts' --exit",
|
|
67
|
-
"
|
|
68
|
-
"extract-api": "dev-tool run extract-api"
|
|
69
|
+
"update-snippets": "echo skipped"
|
|
69
70
|
},
|
|
70
71
|
"dependencies": {
|
|
71
|
-
"@azure/identity": "^4.3.1",
|
|
72
|
-
"@azure/storage-blob": "^12.15.0",
|
|
73
72
|
"@azure/core-rest-pipeline": "^1.16.3",
|
|
73
|
+
"@azure/identity": "^4.3.1",
|
|
74
74
|
"@azure/logger": "^1.1.4",
|
|
75
|
+
"@azure/storage-blob": "^12.15.0",
|
|
75
76
|
"tslib": "^2.6.0"
|
|
76
77
|
},
|
|
77
78
|
"devDependencies": {
|
|
78
|
-
"@
|
|
79
|
-
"@types/node": "^20.12.12",
|
|
80
|
-
"@playwright/test": "^1.43.1",
|
|
79
|
+
"@azure-tools/test-utils": "^1.0.1",
|
|
81
80
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
82
|
-
"rimraf": "^5.0.5",
|
|
83
|
-
"typescript": "~5.6.2",
|
|
84
|
-
"@microsoft/api-extractor": "^7.43.0",
|
|
85
81
|
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"@types/
|
|
89
|
-
"mocha": "^10.0.0",
|
|
82
|
+
"@microsoft/api-extractor": "^7.43.0",
|
|
83
|
+
"@playwright/test": "^1.43.1",
|
|
84
|
+
"@types/debug": "^4.1.12",
|
|
90
85
|
"@types/mocha": "^10.0.0",
|
|
86
|
+
"@types/node": "^20.12.12",
|
|
87
|
+
"@types/sinon": "^17.0.0",
|
|
91
88
|
"cross-env": "^7.0.2",
|
|
92
|
-
"
|
|
89
|
+
"eslint": "^9.9.0",
|
|
90
|
+
"mocha": "^10.0.0",
|
|
91
|
+
"rimraf": "^5.0.5",
|
|
92
|
+
"sinon": "^17.0.0",
|
|
93
|
+
"typescript": "~5.6.2"
|
|
93
94
|
},
|
|
94
95
|
"prettier": "@azure/eslint-plugin-azure-sdk/prettier.json",
|
|
95
96
|
"//sampleConfiguration": {
|