@get-skipper/jest 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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -47,6 +47,17 @@ Example:
47
47
  tests/auth/login.test.ts > login > should log in with valid credentials
48
48
  ```
49
49
 
50
+ ## Options
51
+
52
+ | Option | Default | Description |
53
+ |---|---|---|
54
+ | `sheetName` | first tab | Sheet tab to read/write |
55
+ | `referenceSheets` | `[]` | Additional tabs to read (read-only) |
56
+ | `testIdColumn` | `"testId"` | Column header for the test ID |
57
+ | `disabledUntilColumn` | `"disabledUntil"` | Column header for the disable date |
58
+
59
+ See the [root README](../../README.md) for the full configuration reference.
60
+
50
61
  ## Modes
51
62
 
52
63
  - **`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/jest",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Skipper plugin for Jest — 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.0"
29
+ "@get-skipper/core": "1.1.0"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "jest": ">=29.0.0"