From 8c55454d8d142590a5cfad137dbfc327e5ed0a84 Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Wed, 16 Oct 2024 10:30:58 +0200 Subject: [PATCH] Ensure Re-use cardano-testnet processes In order for all tests to re-use cardano-testnet processes all tests need to be wrapped in the same group thus the `testTestnetContracts` statement must wrap the `group` statement and not the other way round --- offchain/test/Main.purs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/offchain/test/Main.purs b/offchain/test/Main.purs index 98720655..25d880f9 100644 --- a/offchain/test/Main.purs +++ b/offchain/test/Main.purs @@ -51,8 +51,8 @@ pureSuite = do testnetSuite :: TestPlanM (Aff Unit) Unit testnetSuite = do - group "Testnet integration tests" do - testTestnetContracts config do + testTestnetContracts config do + group "Testnet integration tests" do IlliquidCirculationSupply.suite Reserve.suite InitMint.suite