From 21742f4011c07169aa1c4dfaa2b8a9888d26462d Mon Sep 17 00:00:00 2001 From: Tim Fish Date: Thu, 2 May 2024 15:43:19 +0100 Subject: [PATCH] build: Skip example app tests when required (#902) --- test/e2e/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/index.test.ts b/test/e2e/index.test.ts index e2b42064..7b41e19d 100644 --- a/test/e2e/index.test.ts +++ b/test/e2e/index.test.ts @@ -84,7 +84,7 @@ describe('E2E Tests', async () => { testFn( recipe.description, async (ctx) => { - if (!recipe.shouldRun()) { + if (skipAll || !recipe.shouldRun()) { ctx.skip(); }