diff --git a/integration-tests/ccip-tests/testsetups/ccip.go b/integration-tests/ccip-tests/testsetups/ccip.go index 832660f090..ec3e1ed22e 100644 --- a/integration-tests/ccip-tests/testsetups/ccip.go +++ b/integration-tests/ccip-tests/testsetups/ccip.go @@ -1195,7 +1195,10 @@ func CCIPDefaultTestSetUp( if configureCLNode { // wait for all jobs to get created lggr.Info().Msg("Waiting for jobs to be created") - require.NoError(t, setUpArgs.JobAddGrp.Wait(), "Creating jobs shouldn't fail") + err2 := setUpArgs.JobAddGrp.Wait() + if err2 != nil { + lggr.Error().Err(err2).Msg("error waiting for jobs to be created") + } // wait for price updates to be available setUpArgs.WaitForPriceUpdates() if isLeaderLaneFeatureEnabled(lggr) && !pointer.GetBool(setUpArgs.Cfg.TestGroupInput.ExistingDeployment) {