From 44a44c0b69b75d1646b174ef78ae5f5ededebca2 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 29 Jul 2026 01:38:49 +0000 Subject: [PATCH] fix: update workshop app test filter Co-authored-by: Kent C. Dodds --- epicshop/test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/epicshop/test.js b/epicshop/test.js index fab6031..aaa72c8 100644 --- a/epicshop/test.js +++ b/epicshop/test.js @@ -5,7 +5,7 @@ import { spawn } from 'child_process' import path from 'node:path' import { getApps, - isExampleApp, + isExtraApp, isSolutionApp, } from '@epic-web/workshop-utils/apps.server' @@ -36,11 +36,11 @@ process.env.NODE_ENV = 'development' const apps = await getApps() const solutionApps = apps.filter(isSolutionApp) -const exampleApps = apps.filter(isExampleApp) +const extraApps = apps.filter(isExtraApp) let exitCode = 0 -for (const app of [...solutionApps, ...exampleApps]) { +for (const app of [...solutionApps, ...extraApps]) { if (app.test.type !== 'script') continue const relativePath = relativeToWorkshopRoot(app.fullPath)