diff --git a/deno.json b/deno.json index e359765..f3b3b58 100644 --- a/deno.json +++ b/deno.json @@ -11,7 +11,9 @@ "tasks": { "build": "deno run -P src/build-contracts.ts", "test:evm": "deno task build --solcOnly && USE_REVIVE=evm START_REVIVE_DEV_NODE=true START_ETH_RPC=true deno test -P", + "test:evm:manual": "deno task build --solcOnly && USE_REVIVE=evm deno test -P", "test:pvm": "deno task build && USE_REVIVE=pvm START_REVIVE_DEV_NODE=true START_ETH_RPC=true deno test -P", + "test:pvm:manual": "deno task build && USE_REVIVE=pvm deno test -P", "test:geth": "deno task build --solcOnly && START_GETH=true deno test -P", "lint": "deno fmt --check && deno lint" },