aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/notice.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/layout/notice.test.tsx')
-rw-r--r--src/components/atoms/layout/notice.test.tsx12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/components/atoms/layout/notice.test.tsx b/src/components/atoms/layout/notice.test.tsx
deleted file mode 100644
index f5213e4..0000000
--- a/src/components/atoms/layout/notice.test.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-import { describe, expect, it } from '@jest/globals';
-import { render, screen } from '../../../../tests/utils';
-import { Notice } from './notice';
-
-const message = 'Tenetur consequuntur tempore.';
-
-describe('Notice', () => {
- it('renders a message', () => {
- render(<Notice kind="info" message={message} />);
- expect(screen.getByText(message)).toBeInTheDocument();
- });
-});