From 7da532c41464652171474f2315a918bfff43cadf Mon Sep 17 00:00:00 2001 From: hasundue Date: Wed, 28 Feb 2024 09:46:36 +0900 Subject: [PATCH] chore(task): ignore lockfile in integration test --- deno.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.json b/deno.json index 0dae236c..6e9047e7 100644 --- a/deno.json +++ b/deno.json @@ -4,7 +4,7 @@ "lock": "deno task -q cache --lock-write && git add deno.lock", "check": "deno test -A --no-run", "test": "NO_COLOR=1 deno test -A --no-check ./lib/*.ts", - "test:integration": "deno cache ./test/integration/*.ts && NO_COLOR=1 deno test -A ./test/integration/*.ts", + "test:integration": "NO_COLOR=1 deno test --no-lock -A ./test/integration/*.ts", "dev": "deno fmt && deno lint && deno task -q check && deno task -q test ./lib/*_test.ts ./test/integration/*.ts && deno task lock", "run": "deno run --allow-env --allow-read --allow-net --allow-write=. --allow-run=git,deno cli.ts", "update": "deno run --allow-env --allow-read --allow-write --allow-net=deno.land,registry.npmjs.org --allow-run=git,deno ./cli.ts ./lib/*/*.ts",