From c976813dce0a17f0f4ba2b7ce7de3cbc35ecc8ec Mon Sep 17 00:00:00 2001 From: lifegpc Date: Wed, 7 Feb 2024 16:00:01 +0800 Subject: [PATCH] Fix test permissions --- deno.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.json b/deno.json index 6497855..d19c8ee 100644 --- a/deno.json +++ b/deno.json @@ -5,7 +5,7 @@ "cache": "deno cache main.ts server-dev.ts", "server-dev": "deno run -A \"--watch=static/*.css,static/*.ts,static/*/,routes/,translation/\" server-dev.ts", "server": "deno run -A server-run.ts", - "test": "deno test --allow-read=./ --allow-net --allow-write=./ --allow-run=tasklist.exe --allow-env", + "test": "deno test --allow-read --allow-net --allow-write --allow-ffi --allow-run=tasklist.exe --allow-env", "run": "deno run --allow-read=./ --allow-write=./ --allow-run=tasklist.exe --allow-env=DENO_DEPLOYMENT_ID,DOCKER,DB_USE_FFI --allow-ffi --allow-net", "compile": "deno compile --allow-read=./ --allow-write=./ --allow-run=tasklist.exe --allow-env=DENO_DEPLOYMENT_ID --allow-net", "compile_full": "deno compile --allow-read --allow-write --allow-run=tasklist.exe --allow-env=DENO_DEPLOYMENT_ID --allow-net",