@effect/vitest 4.0.0-beta.71 → 4.0.0-beta.73

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/dist/utils.d.ts CHANGED
@@ -35,7 +35,7 @@ import * as Exit from "effect/Exit";
35
35
  import * as Option from "effect/Option";
36
36
  import * as Result from "effect/Result";
37
37
  /**
38
- * Throws an `AssertionError` with the provided error message.
38
+ * Fails the current test with the provided error message.
39
39
  *
40
40
  * @category testing
41
41
  * @since 4.0.0
package/dist/utils.js CHANGED
@@ -9,7 +9,7 @@ import { assert as vassert } from "vitest";
9
9
  // Primitives
10
10
  // ----------------------------
11
11
  /**
12
- * Throws an `AssertionError` with the provided error message.
12
+ * Fails the current test with the provided error message.
13
13
  *
14
14
  * @category testing
15
15
  * @since 4.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect/vitest",
3
- "version": "4.0.0-beta.71",
3
+ "version": "4.0.0-beta.73",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "A set of helpers for testing Effects with vitest",
@@ -34,13 +34,13 @@
34
34
  },
35
35
  "peerDependencies": {
36
36
  "vitest": "^3.0.0 || ^4.0.0",
37
- "effect": "^4.0.0-beta.71"
37
+ "effect": "^4.0.0-beta.73"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/node": "^25.7.0",
41
41
  "@vitest/runner": "4.1.4",
42
42
  "vitest": "4.1.4",
43
- "effect": "^4.0.0-beta.71"
43
+ "effect": "^4.0.0-beta.73"
44
44
  },
45
45
  "scripts": {
46
46
  "build": "tsc -b tsconfig.json && pnpm babel",
package/src/utils.ts CHANGED
@@ -44,7 +44,7 @@ import { assert as vassert } from "vitest"
44
44
  // ----------------------------
45
45
 
46
46
  /**
47
- * Throws an `AssertionError` with the provided error message.
47
+ * Fails the current test with the provided error message.
48
48
  *
49
49
  * @category testing
50
50
  * @since 4.0.0