Skip to content

Commit

Permalink
build: Skip example app tests when required (#902)
Browse files Browse the repository at this point in the history
  • Loading branch information
timfish authored May 2, 2024
1 parent 4016a5e commit 21742f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ describe('E2E Tests', async () => {
testFn(
recipe.description,
async (ctx) => {
if (!recipe.shouldRun()) {
if (skipAll || !recipe.shouldRun()) {
ctx.skip();
}

Expand Down

0 comments on commit 21742f4

Please sign in to comment.