aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/modal/modal.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/modal/modal.test.tsx')
-rw-r--r--src/components/atoms/modal/modal.test.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/atoms/modal/modal.test.tsx b/src/components/atoms/modal/modal.test.tsx
index 6e7d29e..dfa4a88 100644
--- a/src/components/atoms/modal/modal.test.tsx
+++ b/src/components/atoms/modal/modal.test.tsx
@@ -1,6 +1,6 @@
import { describe, expect, it } from '@jest/globals';
-import { render, screen } from '../../../../tests/utils';
-import { Heading } from '../headings';
+import { render, screen as rtlScreen } from '../../../../tests/utils';
+import { Heading } from '../heading';
import { Modal } from './modal';
const title = 'A custom title';
@@ -16,11 +16,11 @@ describe('Modal', () => {
{children}
</Modal>
);
- expect(screen.getByRole('heading', { level })).toHaveTextContent(title);
+ expect(rtlScreen.getByRole('heading', { level })).toHaveTextContent(title);
});
it('renders the modal body', () => {
render(<Modal>{children}</Modal>);
- expect(screen.getByText(children)).toBeInTheDocument();
+ expect(rtlScreen.getByText(children)).toBeInTheDocument();
});
});