-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
16 lines (16 loc) · 608 Bytes
/
deno.json
File metadata and controls
16 lines (16 loc) · 608 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"imports": {
"std/": "https://deno.land/std@0.220.0/",
"std/assert": "https://deno.land/std@0.220.0/assert/mod.ts",
"std/testing/": "https://deno.land/std@0.220.0/testing/"
},
"tasks": {
"test": "deno test --allow-read tests/",
"test:unit": "deno test --allow-read tests/unit/",
"test:property": "deno test --allow-read tests/property/",
"test:e2e": "deno test --allow-read tests/e2e/",
"test:aspect": "deno test --allow-read tests/aspect/",
"test:bench": "deno bench tests/bench/",
"test:all": "deno test --allow-read tests/ && deno bench tests/bench/"
}
}