@get-skipper/playwright 1.0.0 → 1.1.0
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 +11 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -62,6 +62,17 @@ Example:
|
|
|
62
62
|
tests/auth/login.spec.ts > login > should log in with valid credentials
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
+
## Options
|
|
66
|
+
|
|
67
|
+
| Option | Default | Description |
|
|
68
|
+
|---|---|---|
|
|
69
|
+
| `sheetName` | first tab | Sheet tab to read/write |
|
|
70
|
+
| `referenceSheets` | `[]` | Additional tabs to read (read-only) |
|
|
71
|
+
| `testIdColumn` | `"testId"` | Column header for the test ID |
|
|
72
|
+
| `disabledUntilColumn` | `"disabledUntil"` | Column header for the disable date |
|
|
73
|
+
|
|
74
|
+
See the [root README](../../README.md) for the full configuration reference.
|
|
75
|
+
|
|
65
76
|
## Modes
|
|
66
77
|
|
|
67
78
|
- **`read-only`** (default): reads the spreadsheet, skips disabled tests. No writes.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@get-skipper/playwright",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Skipper plugin for Playwright — enable/disable tests from a Google Spreadsheet",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skipper",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"LICENSE"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@get-skipper/core": "1.
|
|
29
|
+
"@get-skipper/core": "1.1.0"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@playwright/test": ">=1.40.0"
|