Skip to content

Commit 4d3dc8f

Browse files
committed
fix: Add import to internal tooltip
1 parent 8662ce1 commit 4d3dc8f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/internal/components/tooltip/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import PopoverContainer from '../../../popover/container';
1010
import { PopoverProps } from '../../../popover/interfaces';
1111
import { Transition } from '../transition';
1212

13+
import testUtilsStyles from '../../../tooltip/test-classes/styles.css.js';
1314
import styles from './styles.css.js';
1415

1516
export interface TooltipProps {
@@ -65,7 +66,7 @@ export default function Tooltip({
6566

6667
return (
6768
<Portal>
68-
<div className={styles.root} {...contentAttributes} data-testid={trackKey}>
69+
<div className={`${styles.root} ${testUtilsStyles.root}`} {...contentAttributes} data-testid={trackKey}>
6970
<Transition in={true}>
7071
{() => (
7172
<PopoverContainer

0 commit comments

Comments
 (0)