blob: 4a34a7372b34c36e31c666c8b0808c9a22d7f174 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{
"package": "@emprespresso/ci",
"workspace": ["./*"],
"tasks": {
"test": "cd u/tests && deno test --allow-env --allow-read --allow-write",
"test:trace": "cd u/tests && deno test --allow-env --allow-read --allow-write trace_test.ts",
"test:either": "cd u/tests && deno test --allow-env --allow-read --allow-write either_test.ts",
"test:coverage": "cd u/tests && deno test --coverage=coverage --allow-env --allow-read --allow-write"
}
}
|