From 8b68d28d66f7808f88c113731983340110e3625c Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Mon, 10 Oct 2022 08:18:39 +0800 Subject: [PATCH] Add sb/testing-library as extra sandbox dep for web-components --- scripts/sandbox.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/sandbox.ts b/scripts/sandbox.ts index 9bebf90e9b3..e061b5b9b4a 100644 --- a/scripts/sandbox.ts +++ b/scripts/sandbox.ts @@ -344,7 +344,8 @@ function addExtraDependencies({ dryRun: boolean; debug: boolean; }) { - const extraDeps = ['@storybook/jest']; + // web-components doesn't install '@storybook/testing-library' by default + const extraDeps = ['@storybook/jest', '@storybook/testing-library@0.0.14-next.0']; if (debug) console.log('🎁 Adding extra deps', extraDeps); if (!dryRun) { const packageManager = JsPackageManagerFactory.getPackageManager(false, cwd);