From 229e563c37ad88af1524c8220e09f5d7ae02bb54 Mon Sep 17 00:00:00 2001 From: Maksim Dimitrov Date: Fri, 28 Jul 2023 14:54:49 +0300 Subject: [PATCH] fix(scrips) fix zombienet command Signed-off-by: Maksim Dimitrov --- scripts/runTests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/runTests.jl b/scripts/runTests.jl index adea7cf..e6a522a 100644 --- a/scripts/runTests.jl +++ b/scripts/runTests.jl @@ -31,7 +31,7 @@ for host::String in hosts test_name::String = match_captures[2] # Prepare the `zombienet test` command - command::Cmd = `zombienet -p native test $(joinpath(host_tests_dir, test))` + command::Cmd = `node zombienet/javascript/packages/cli/dist/cli.js -p native test $(joinpath(host_tests_dir, test))` full_test_name::String = "[$(host)] $(test_name)" println("Running test $(full_test_name)")