forked from c4spar/deno-cliffy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev_deps.ts
35 lines (34 loc) · 1.2 KB
/
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
31
32
33
34
35
/* std */
export {
assert,
assertEquals,
assertInstanceOf,
assertRejects,
assertStrictEquals,
assertThrows,
} from "https://deno.land/std@0.196.0/testing/asserts.ts";
export {
assertSpyCall,
assertSpyCalls,
spy,
} from "https://deno.land/std@0.196.0/testing/mock.ts";
export { assertSnapshot } from "https://deno.land/std@0.196.0/testing/snapshot.ts";
export { describe, it } from "https://deno.land/std@0.196.0/testing/bdd.ts";
export {
assertType,
type IsExact,
} from "https://deno.land/std@0.196.0/testing/types.ts";
export {
bold,
red,
stripColor,
} from "https://deno.land/std@0.196.0/fmt/colors.ts";
export { dirname } from "https://deno.land/std@0.196.0/path/mod.ts";
export { expandGlob } from "https://deno.land/std@0.196.0/fs/expand_glob.ts";
export type { WalkEntry } from "https://deno.land/std@0.196.0/fs/walk.ts";
export { copy } from "https://deno.land/std@0.196.0/streams/copy.ts";
export { format } from "https://deno.land/std@0.196.0/datetime/format.ts";
export { gt } from "https://deno.land/std@0.196.0/semver/gt.ts";
export { lt } from "https://deno.land/std@0.196.0/semver/lt.ts";
/* 3rd party */
export { default as sinon } from "https://cdn.skypack.dev/sinon@v13.0.2?dts";