racejar 1.1.0 → 1.1.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.1.2](https://github.com/portabletext/editor/compare/racejar-v1.1.1...racejar-v1.1.2) (2025-01-27)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **deps:** update dependency @playwright/test to ^1.50.0 ([a55a0f5](https://github.com/portabletext/editor/commit/a55a0f591e59c77280c033c48d85bed8ea151bed))
9
+
10
+ ## [1.1.1](https://github.com/portabletext/editor/compare/racejar-v1.1.0...racejar-v1.1.1) (2024-12-13)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **deps:** update dependency @playwright/test to ^1.49.1 ([21e0e3e](https://github.com/portabletext/editor/commit/21e0e3efe4b9451956f9d4133d65dca5147b3c64))
16
+
3
17
  ## [1.1.0](https://github.com/portabletext/editor/compare/racejar-v1.0.3...racejar-v1.1.0) (2024-12-02)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "racejar",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "A testing framework agnostic Gherkin driver",
5
5
  "keywords": [
6
6
  "cucumber",
@@ -44,15 +44,15 @@
44
44
  "@cucumber/gherkin": "^30.0.4",
45
45
  "@cucumber/messages": "^27.0.2",
46
46
  "@jest/globals": "^29.7.0",
47
- "@playwright/test": "^1.49.0",
48
- "@sanity/pkg-utils": "^6.11.13",
49
- "typescript": "5.7.2",
50
- "vitest": "^2.1.5"
47
+ "@playwright/test": "^1.50.0",
48
+ "@sanity/pkg-utils": "^7.0.2",
49
+ "typescript": "5.7.3",
50
+ "vitest": "^3.0.4"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "@jest/globals": "^29.7.0",
54
- "@playwright/test": "^1.49.0",
55
- "vitest": "^2.1.5"
54
+ "@playwright/test": "^1.50.0",
55
+ "vitest": "^3.0.4"
56
56
  },
57
57
  "scripts": {
58
58
  "check:lint": "biome lint .",
@@ -40,7 +40,7 @@ export function Feature<
40
40
  ? test.describe.skip
41
41
  : test.describe
42
42
 
43
- describeFn(feature.name, async () => {
43
+ describeFn(feature.name, () => {
44
44
  for (const scenario of feature.scenarios) {
45
45
  const testFn =
46
46
  scenario.tag === 'only'
@@ -12,7 +12,7 @@ export default defineWorkspace([
12
12
  {
13
13
  plugins: [],
14
14
  test: {
15
- name: 'chromium',
15
+ name: 'browser (chromium)',
16
16
  exclude: ['example-playwright'],
17
17
  },
18
18
  },