-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
17 lines (17 loc) · 886 Bytes
/
deno.json
File metadata and controls
17 lines (17 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"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/",
"@rescript/runtime/": "https://esm.sh/@rescript/runtime@12.1.0/"
},
"tasks": {
"test": "deno test --allow-read --no-check 'tests/**/*Test.res.js'",
"test:unit": "deno test --allow-read --no-check 'tests/unit/*Test.res.js'",
"test:property": "deno test --allow-read --no-check 'tests/property/*Test.res.js'",
"test:e2e": "deno test --allow-read --no-check 'tests/e2e/*Test.res.js'",
"test:aspect": "deno test --allow-read --no-check 'tests/aspect/*Test.res.js'",
"test:bench": "deno bench --no-check 'tests/bench/*Bench.res.js'",
"test:all": "deno test --allow-read --no-check 'tests/**/*Test.res.js' && deno bench --no-check 'tests/bench/*Bench.res.js'"
}
}