@get-skipper/nightwatch 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
|
@@ -41,6 +41,17 @@ If Nightwatch exposes nested describe blocks via `titlePath`, the full path is u
|
|
|
41
41
|
tests/auth/login.js > login > should log in with valid credentials
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
+
## Options
|
|
45
|
+
|
|
46
|
+
| Option | Default | Description |
|
|
47
|
+
|---|---|---|
|
|
48
|
+
| `sheetName` | first tab | Sheet tab to read/write |
|
|
49
|
+
| `referenceSheets` | `[]` | Additional tabs to read (read-only) |
|
|
50
|
+
| `testIdColumn` | `"testId"` | Column header for the test ID |
|
|
51
|
+
| `disabledUntilColumn` | `"disabledUntil"` | Column header for the disable date |
|
|
52
|
+
|
|
53
|
+
See the [root README](../../README.md) for the full configuration reference.
|
|
54
|
+
|
|
44
55
|
## Modes
|
|
45
56
|
|
|
46
57
|
- **`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/nightwatch",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Skipper plugin for Nightwatch.js — 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
|
"nightwatch": ">=3.0.0"
|