diff --git a/packages/react-components/react-drawer/src/e2e/DrawerShared.tsx b/packages/react-components/react-drawer/src/e2e/DrawerShared.tsx index 9dc0289b285bf..52a669a896801 100644 --- a/packages/react-components/react-drawer/src/e2e/DrawerShared.tsx +++ b/packages/react-components/react-drawer/src/e2e/DrawerShared.tsx @@ -2,7 +2,8 @@ import * as React from 'react'; import { mount } from '@cypress/react'; import { FluentProvider } from '@fluentui/react-provider'; import { webLightTheme } from '@fluentui/react-theme'; -import { DrawerProps } from '@fluentui/react-components'; + +import type { DrawerProps } from '../Drawer'; const mountFluent = (element: JSX.Element) => { mount({element}); diff --git a/scripts/beachball/base.config.json b/scripts/beachball/base.config.json index fd585f2489134..9089ab40b45cf 100644 --- a/scripts/beachball/base.config.json +++ b/scripts/beachball/base.config.json @@ -15,6 +15,7 @@ "**/bundle-size/**", "**/common/isConformant.ts", "**/src/testing/**", + "**/src/e2e/**", "**/config/tests.js", "**/jest.config.js", "**/SPEC*.md", diff --git a/scripts/beachball/config.test.ts b/scripts/beachball/config.test.ts index 682f403be9cc0..defc43c2d61cc 100644 --- a/scripts/beachball/config.test.ts +++ b/scripts/beachball/config.test.ts @@ -24,6 +24,7 @@ describe(`beachball configs`, () => { '**/bundle-size/**', '**/common/isConformant.ts', '**/src/testing/**', + '**/src/e2e/**', '**/config/tests.js', '**/jest.config.js', '**/SPEC*.md',