diff --git a/test/scenario.spec.ts b/test/scenario.spec.ts index 6ddf43d4..b7b3c318 100644 --- a/test/scenario.spec.ts +++ b/test/scenario.spec.ts @@ -35,6 +35,7 @@ fs.readdirSync(scenarioFolder).forEach((file) => { for (const story of scenario.stories) { it(story.description, async function () { + // Retry the test scenarios up to 4 times if an error happens, due erratic HEVM network errors this.retries(4); await executeStory(story, testEnv); });