@effect/vitest 0.13.14 → 0.13.16
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 +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -179,7 +179,7 @@ function divide(a: number, b: number) {
|
|
|
179
179
|
}
|
|
180
180
|
|
|
181
181
|
// Temporarily skip the test for dividing numbers
|
|
182
|
-
it.effect("test failure as Exit", () =>
|
|
182
|
+
it.effect.skip("test failure as Exit", () =>
|
|
183
183
|
Effect.gen(function* () {
|
|
184
184
|
const result = yield* Effect.exit(divide(4, 0))
|
|
185
185
|
expect(result).toStrictEqual(Exit.fail("Cannot divide by zero"))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/vitest",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.16",
|
|
4
4
|
"description": "A set of helpers for testing Effects with vitest",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"sideEffects": [],
|
|
12
12
|
"peerDependencies": {
|
|
13
13
|
"vitest": "^2.0.5",
|
|
14
|
-
"effect": "^3.10.
|
|
14
|
+
"effect": "^3.10.16"
|
|
15
15
|
},
|
|
16
16
|
"publishConfig": {
|
|
17
17
|
"provenance": true
|