We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8fc6e8 commit b77aca8Copy full SHA for b77aca8
1 file changed
packages/storybook-framework-web-components/tests/fixtures/all-in-one/.storybook/main.js
@@ -26,7 +26,13 @@ const config = {
26
// ignore circular dependency warnings in storybook internals
27
if (log.code === 'CIRCULAR_DEPENDENCY') {
28
const logIds = log.ids?.map(id => id?.replace(/\\/g, '/'));
29
- if (logIds?.some(id => id?.endsWith('node_modules/storybook/dist/csf/index.js'))) {
+ if (
30
+ logIds?.some(
31
+ id =>
32
+ id?.endsWith('node_modules/storybook/dist/csf/index.js') ||
33
+ id?.endsWith('node_modules/msw/lib/core/experimental/frames/http-frame.mjs'),
34
+ )
35
+ ) {
36
defaultHandler('warn', log);
37
return;
38
}
0 commit comments