From 7ba6753272d71ca1c4708a5ffb754fa4671ab73f Mon Sep 17 00:00:00 2001 From: hasundue Date: Thu, 29 Feb 2024 09:55:38 +0900 Subject: [PATCH] chore(task/integration): skip caching before test --- deno.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.json b/deno.json index 7209851e..7a05b066 100644 --- a/deno.json +++ b/deno.json @@ -5,7 +5,7 @@ "check": "deno check ./*.ts ./lib/*.ts ./test/integration/*.ts", "test": "NO_COLOR=1 deno test -A --no-check ./lib/*.ts", "all": "deno fmt && deno lint && deno task -q check && deno task lock && deno task -q test", - "integration": "deno cache --no-lock ./test/integration/*.ts && NO_COLOR=1 deno test --no-lock -A ./test/integration/*.ts", + "integration": "NO_COLOR=1 deno test --no-lock -A ./test/integration/*.ts", "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", "update:commit": "deno task -q update --commit --pre-commit=fmt,lock --prefix 'build(deps):'"