@get-skipper/vitest 1.0.0 → 1.0.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 +11 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -43,6 +43,17 @@ No changes to test files are required. Tests with a future `disabledUntil` date
|
|
|
43
43
|
{relative file path} > {describe block(s)} > {test name}
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
+
## Options
|
|
47
|
+
|
|
48
|
+
| Option | Default | Description |
|
|
49
|
+
|---|---|---|
|
|
50
|
+
| `sheetName` | first tab | Sheet tab to read/write |
|
|
51
|
+
| `referenceSheets` | `[]` | Additional tabs to read (read-only) |
|
|
52
|
+
| `testIdColumn` | `"testId"` | Column header for the test ID |
|
|
53
|
+
| `disabledUntilColumn` | `"disabledUntil"` | Column header for the disable date |
|
|
54
|
+
|
|
55
|
+
See the [root README](../../README.md) for the full configuration reference.
|
|
56
|
+
|
|
46
57
|
## Modes
|
|
47
58
|
|
|
48
59
|
- **`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/vitest",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Skipper plugin for Vitest — 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.0.
|
|
29
|
+
"@get-skipper/core": "1.0.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"vitest": ">=1.0.0"
|