aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/no-results.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/layout/no-results.test.tsx')
-rw-r--r--src/components/organisms/layout/no-results.test.tsx12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/components/organisms/layout/no-results.test.tsx b/src/components/organisms/layout/no-results.test.tsx
deleted file mode 100644
index fdd86f7..0000000
--- a/src/components/organisms/layout/no-results.test.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-import { describe, expect, it } from '@jest/globals';
-import { render, screen as rtlScreen } from '../../../../tests/utils';
-import { NoResults } from './no-results';
-
-describe('NoResults', () => {
- it('renders a text with a form', () => {
- render(<NoResults />);
-
- expect(rtlScreen.getByText(/No results/i)).toBeInTheDocument();
- expect(rtlScreen.getByRole('searchbox')).toBeInTheDocument();
- });
-});