Skip to content

Commit 10eecc4

Browse files
committed
fix tests
1 parent ec7de9c commit 10eecc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/jestResolver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module.exports = (request, options) => {
4444
...options,
4545
// https://github.com/microsoft/accessibility-insights-web/pull/5421#issuecomment-1109168149
4646
packageFilter: pkg => {
47-
if (!pkg.name?.startsWith('@tailwind') && pkg.name !== 'tailwindcss') {
47+
if (!pkg.name?.startsWith('@tailwind') && pkg.name !== 'tailwindcss' && !pkg.name?.startsWith('storybook') && !pkg.name?.startsWith('@storybook')) {
4848
delete pkg['exports'];
4949
delete pkg['module'];
5050
}

0 commit comments

Comments
 (0)