-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsafe.test.ts
More file actions
48 lines (41 loc) · 991 Bytes
/
safe.test.ts
File metadata and controls
48 lines (41 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { describe, it } from "bdd";
import { expect } from "expect";
import { call, run } from "npm:effection@4.0.0-alpha.8";
const tests = describe("call()");
it(tests, "should call the generator function", async () => {
expect.assertions(1);
function* me() {
return "valid";
}
await run(function* () {
const result = yield* call(me);
expect(result).toBe("valid");
});
});
it(tests, "should return an Err()", async () => {
expect.assertions(1);
const err = new Error("bang!");
function* me() {
throw err;
}
await run(function* () {
try {
yield* call(me);
} catch (err) {
expect(err).toEqual(err);
}
});
});
it(tests, "should call a promise", async () => {
expect.assertions(1);
const me = () =>
new Promise<string>((resolve) => {
setTimeout(() => {
resolve("valid");
}, 10);
});
await run(function* () {
const result = yield* call(me);
expect(result).toEqual("valid");
});
});