@definitely-fine/playwright 0.1.0 → 0.1.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/README.md +1 -1
- package/package.json +21 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
`@definitely-fine/playwright` helps Playwright tests activate `definitely-fine` scenarios in browser-driven flows.
|
|
4
4
|
|
|
5
|
-
It extends the core scenario builder with
|
|
5
|
+
It extends the core scenario builder with scenario header metadata plus helpers for creating browser contexts and pages that already send the active scenario id.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@definitely-fine/playwright",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Playwright helpers for definitely-fine.",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Playwright scenario helpers for definitely-fine browser-driven tests.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"testing",
|
|
7
|
+
"mocking",
|
|
8
|
+
"scenarios",
|
|
9
|
+
"playwright",
|
|
10
|
+
"e2e",
|
|
11
|
+
"browser-testing",
|
|
12
|
+
"interception"
|
|
13
|
+
],
|
|
5
14
|
"license": "MIT",
|
|
6
15
|
"type": "module",
|
|
7
16
|
"sideEffects": false,
|
|
@@ -17,7 +26,7 @@
|
|
|
17
26
|
"main": "./dist/index.js",
|
|
18
27
|
"types": "./dist/index.d.ts",
|
|
19
28
|
"dependencies": {
|
|
20
|
-
"definitely-fine": "0.1.
|
|
29
|
+
"definitely-fine": "0.1.1"
|
|
21
30
|
},
|
|
22
31
|
"devDependencies": {
|
|
23
32
|
"@playwright/test": "^1.56.1"
|
|
@@ -28,6 +37,15 @@
|
|
|
28
37
|
"engines": {
|
|
29
38
|
"node": ">=22"
|
|
30
39
|
},
|
|
40
|
+
"homepage": "https://github.com/michalkvasnicak/definitely-fine#readme",
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/michalkvasnicak/definitely-fine/issues"
|
|
43
|
+
},
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "git+https://github.com/michalkvasnicak/definitely-fine.git",
|
|
47
|
+
"directory": "packages/playwright"
|
|
48
|
+
},
|
|
31
49
|
"publishConfig": {
|
|
32
50
|
"access": "public"
|
|
33
51
|
},
|