From 5228b808eef42327509642d7644ecee12e794c14 Mon Sep 17 00:00:00 2001 From: pcheremu Date: Thu, 25 Jan 2024 19:26:16 +0100 Subject: [PATCH] test: update node --- src/tests/cli-tests/tests/common.test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tests/cli-tests/tests/common.test.ts b/src/tests/cli-tests/tests/common.test.ts index 8565d467..ae32c706 100644 --- a/src/tests/cli-tests/tests/common.test.ts +++ b/src/tests/cli-tests/tests/common.test.ts @@ -174,7 +174,6 @@ describe("User can call write method from deployed contract on network", () => { --contract ${contracts.sepoliaTestnet} --method "setGreeting(string _greeting) "\ --args "New Test ARG" --private-key ${wallet.testnetPK} ${optionalRedirection}`; // potential issue. on windows without the redirection we catching a wrong stdout. const result = executeCommand(command); - console.log("Full output: ----> " + result.output); expect(result.output).toMatch(/(Transaction submitted.)/i); expect(result.output).toMatch(/(Transaction processed successfully.)/i); expect(result.output).not.toMatch(/([Ee]rror|[Ww]arning|[Ff]ail)/i);