From 4bf971bafa10d0e4f48e22a0cf164af99dd63d0e Mon Sep 17 00:00:00 2001 From: Tim Fish Date: Thu, 2 May 2024 14:51:00 +0100 Subject: [PATCH] build: Skip example app tests too --- 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(); }