racejar 1.2.0 → 1.2.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.2](https://github.com/portabletext/editor/compare/racejar-v1.2.1...racejar-v1.2.2) (2025-03-12)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **deps:** update dependency @playwright/test to ^1.51.0 ([38b00b7](https://github.com/portabletext/editor/commit/38b00b7e41b74a5075896e87e8ceac2a70c18a4b))
9
+
10
+ ## [1.2.1](https://github.com/portabletext/editor/compare/racejar-v1.2.0...racejar-v1.2.1) (2025-03-03)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * make hooks optional in Playwright Feature ([b02b7fd](https://github.com/portabletext/editor/commit/b02b7fd86c1ef77a4928f8997244b18c16972e9c))
16
+
3
17
  ## [1.2.0](https://github.com/portabletext/editor/compare/racejar-v1.1.3...racejar-v1.2.0) (2025-02-10)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "racejar",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "A testing framework agnostic Gherkin driver",
5
5
  "keywords": [
6
6
  "cucumber",
@@ -41,18 +41,18 @@
41
41
  },
42
42
  "devDependencies": {
43
43
  "@cucumber/cucumber-expressions": "^18.0.1",
44
- "@cucumber/gherkin": "^31.0.0",
44
+ "@cucumber/gherkin": "^32.0.0",
45
45
  "@cucumber/messages": "^27.2.0",
46
46
  "@jest/globals": "^29.7.0",
47
- "@playwright/test": "^1.50.1",
47
+ "@playwright/test": "^1.51.0",
48
48
  "@sanity/pkg-utils": "^7.0.4",
49
49
  "typescript": "5.7.3",
50
- "vitest": "^3.0.5"
50
+ "vitest": "^3.0.8"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "@jest/globals": "^29.7.0",
54
- "@playwright/test": "^1.50.1",
55
- "vitest": "^3.0.5"
54
+ "@playwright/test": "^1.51.0",
55
+ "vitest": "^3.0.8"
56
56
  },
57
57
  "scripts": {
58
58
  "check:lint": "biome lint .",
@@ -34,7 +34,7 @@ export function Feature<
34
34
  parameterTypes,
35
35
  }: {
36
36
  featureText: string
37
- hooks: Array<Hook<TContext>>
37
+ hooks?: Array<Hook<TContext>>
38
38
  stepDefinitions: Array<StepDefinition<TContext, any, any, any>>
39
39
  parameterTypes?: Array<ParameterType<unknown>>
40
40
  }) {
package/tsconfig.json CHANGED
@@ -3,5 +3,5 @@
3
3
  "compilerOptions": {
4
4
  "noEmit": true
5
5
  },
6
- "include": ["src"]
6
+ "include": ["src", "example", "example-playwright"]
7
7
  }
@@ -9,11 +9,4 @@ export default defineWorkspace([
9
9
  exclude: ['example-playwright'],
10
10
  },
11
11
  },
12
- {
13
- plugins: [],
14
- test: {
15
- name: 'browser (chromium)',
16
- exclude: ['example-playwright'],
17
- },
18
- },
19
12
  ])