From bfed92f33f3fe41a28227d524660aa427b587176 Mon Sep 17 00:00:00 2001 From: Robert van Eerdewijk Date: Tue, 11 Nov 2025 15:52:51 +0100 Subject: [PATCH] added test:evm:manual and test:pvm:manual --- deno.json | 2 ++ 1 file changed, 2 insertions(+) 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" },