From 9d64108cc20a451e2e3c63cc93164f656286eaf6 Mon Sep 17 00:00:00 2001 From: literat Date: Wed, 26 Jun 2024 16:40:10 +0200 Subject: [PATCH] fixup! Test(ci): Allow unstable components safely fail E2E tests --- tests/e2e/demo-components-compare.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e/demo-components-compare.spec.ts b/tests/e2e/demo-components-compare.spec.ts index ea703bb066..bcd3ac9d8c 100644 --- a/tests/e2e/demo-components-compare.spec.ts +++ b/tests/e2e/demo-components-compare.spec.ts @@ -56,7 +56,7 @@ const runComponentCompareTests = (testConfig) => { fullPage: true, }); } catch (error) { - if (!component.startsWith('UNSTABLE_')) { + if (!component.startsWith('unstable_')) { console.error(`Test for demo ${formattedPackageName} component ${component} failed. ${error}`); // Rethrow the error for stable components only throw error;