summaryrefslogtreecommitdiff
path: root/deno.json
diff options
context:
space:
mode:
authorElizabeth <me@liz.coffee>2025-06-02 16:52:52 -0700
committerElizabeth <me@liz.coffee>2025-06-02 16:52:52 -0700
commit98f5c21aa65bbbca01a186a754249335b4afef57 (patch)
tree0fc8e01a73f0a3be4534c11724ad2ff634b4fd2f /deno.json
parent373d9ec700c0097a22cf665a8e33cf48998d1dc2 (diff)
downloadci-98f5c21aa65bbbca01a186a754249335b4afef57.tar.gz
ci-98f5c21aa65bbbca01a186a754249335b4afef57.zip
fixup the Either monad a bit for type safetyp
Diffstat (limited to 'deno.json')
-rw-r--r--deno.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/deno.json b/deno.json
index adeae7b..4a34a73 100644
--- a/deno.json
+++ b/deno.json
@@ -1,4 +1,10 @@
{
"package": "@emprespresso/ci",
- "workspace": ["./*"]
+ "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"
+ }
}