-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdeps.ts
58 lines (53 loc) · 1.1 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* @description Dependency file imports dependencies for use by local modules.
* To add additional dependencies, add an export statement.
*/
export {
MongoClient,
Database,
Collection,
Bson
} from "https://deno.land/x/[email protected]/mod.ts";
export type {
CountOptions,
InsertOptions,
UpdateOptions,
FindAndModifyOptions,
DropOptions,
AggregateOptions,
FindOptions,
DeleteOptions,
} from 'https://deno.land/x/[email protected]/src/types.ts';
export {
afterAll,
afterEach,
beforeAll,
beforeEach,
describe,
it,
} from 'https://deno.land/[email protected]/testing/bdd.ts';
export {
assert,
assertAlmostEquals,
assertArrayIncludes,
assertEquals,
assertExists,
assertFalse,
assertInstanceOf,
assertIsError,
assertMatch,
assertNotEquals,
assertNotMatch,
assertNotStrictEquals,
assertObjectMatch,
assertRejects,
assertStrictEquals,
assertStringIncludes,
assertThrows,
equal,
fail,
unimplemented,
unreachable,
} from 'https://deno.land/[email protected]/testing/asserts.ts';
import * as dotenv from "https://deno.land/x/[email protected]/mod.ts";
export { dotenv }