-
Notifications
You must be signed in to change notification settings - Fork 1
/
dev_deps.ts
30 lines (25 loc) · 823 Bytes
/
dev_deps.ts
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
import { assertEquals } from "https://deno.land/[email protected]/assert/mod.ts";
export { assertEquals };
import {
afterAll,
afterEach,
beforeAll,
beforeEach,
describe,
it,
} from "https://deno.land/[email protected]/testing/bdd.ts";
export { afterAll, afterEach, beforeAll, beforeEach, describe, it };
export { FakeTime } from "https://deno.land/[email protected]/testing/time.ts";
import {
assertSpyCall,
assertSpyCalls,
returnsNext,
spy,
type Stub,
stub,
} from "https://deno.land/[email protected]/testing/mock.ts";
export { assertSpyCall, assertSpyCalls, returnsNext, spy, type Stub, stub };
export { EventEmitter } from "https://deno.land/x/[email protected]/mod.ts";
export { expect } from "https://deno.land/x/[email protected]/mod.ts";
import * as mf from "https://deno.land/x/[email protected]/mod.ts";
export { mf };