@azure/create-microsoft-playwright-testing 1.0.0-beta.2 → 1.0.0-beta.4
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/CHANGELOG.md +8 -0
- package/README.md +4 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.4 (2025-09-11)
|
|
4
|
+
|
|
5
|
+
### Other Changes
|
|
6
|
+
|
|
7
|
+
- This package has been deprecated and will no longer be maintained after **March 8, 2026**. Upgrade to the replacement package, **@azure/create-playwright**, to continue receiving updates. Refer to the [migration guide](https://aka.ms/mpt/migration-guidance) for guidance on upgrading. Refer to our [deprecation policy](https://azure.github.io/azure-sdk/policies_support.html) for more details.
|
|
8
|
+
|
|
9
|
+
## 1.0.0-beta.3 (2025-08-22)
|
|
10
|
+
|
|
3
11
|
## 1.0.0-beta.2 (2024-11-19)
|
|
4
12
|
|
|
5
13
|
This release improves compatibility with modern JavaScript environments by migrating the package to ECMAScript modules and Vitest
|
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Microsoft Playwright Testing preview
|
|
2
2
|
|
|
3
|
+
**Deprecation message**
|
|
4
|
+
|
|
5
|
+
This package has been deprecated and will no longer be maintained after **March 8, 2026**. Upgrade to the replacement package, **@azure/create-playwright**, to continue receiving updates. Refer to the [migration guide](https://aka.ms/mpt/migration-guidance) for guidance on upgrading. Refer to our [deprecation policy](https://azure.github.io/azure-sdk/policies_support.html) for more details.
|
|
6
|
+
|
|
3
7
|
Microsoft Playwright Testing is a fully managed service that uses the cloud to enable you to run Playwright tests with much higher parallelization across different operating system-browser combinations simultaneously. This means faster test runs with broader scenario coverage, which helps speed up delivery of features without sacrificing quality. The service also enables you to publish test results and related artifacts to the service and view them in the service portal enabling faster and easier troubleshooting. With Microsoft Playwright Testing service, you can release features faster and more confidently.
|
|
4
8
|
|
|
5
9
|
## Usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/create-microsoft-playwright-testing",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.4",
|
|
4
4
|
"description": "Package to setup @azure/microsoft-playwright-testing",
|
|
5
5
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/playwrighttesting/create-microsoft-playwright-testing/README.md",
|
|
6
6
|
"sdk-type": "client",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@types/prompts": "^2.4.9",
|
|
71
71
|
"@vitest/coverage-istanbul": "^2.1.2",
|
|
72
72
|
"eslint": "^9.9.0",
|
|
73
|
-
"typescript": "~5.
|
|
73
|
+
"typescript": "~5.7.2",
|
|
74
74
|
"vitest": "^2.1.2"
|
|
75
75
|
},
|
|
76
76
|
"prettier": "@azure/eslint-plugin-azure-sdk/prettier.json",
|
|
@@ -92,7 +92,8 @@
|
|
|
92
92
|
"esm",
|
|
93
93
|
"commonjs"
|
|
94
94
|
],
|
|
95
|
-
"selfLink": false
|
|
95
|
+
"selfLink": false,
|
|
96
|
+
"project": "./tsconfig.src.json"
|
|
96
97
|
},
|
|
97
98
|
"exports": {
|
|
98
99
|
"./package.json": "./package.json",
|