summaryrefslogtreecommitdiffstats
path: root/src/components/molecules/forms/flipping-label.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-05-24 16:05:03 +0200
committerArmand Philippot <git@armandphilippot.com>2022-05-24 16:05:03 +0200
commite1cc2de22fc703d94e1151beb9526d8cbe0e49c1 (patch)
treecffd9ada0c418d5e9fb02236c4a7bc050f4c0208 /src/components/molecules/forms/flipping-label.test.tsx
parent525ea4c39c4965d9f6f7941cf203e56190d0ec1c (diff)
chore(toolbar): change icons to close button when activated
Diffstat (limited to 'src/components/molecules/forms/flipping-label.test.tsx')
-rw-r--r--src/components/molecules/forms/flipping-label.test.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/molecules/forms/flipping-label.test.tsx b/src/components/molecules/forms/flipping-label.test.tsx
new file mode 100644
index 0000000..9a7aa22
--- /dev/null
+++ b/src/components/molecules/forms/flipping-label.test.tsx
@@ -0,0 +1,14 @@
+import { render, screen } from '@test-utils';
+import FlippingLabel from './flipping-label';
+
+describe('FlippingLabel', () => {
+ it('renders a label', () => {
+ const ariaLabel = 'vero quo inventore';
+ render(
+ <FlippingLabel aria-label={ariaLabel} isActive={false}>
+ <>Test</>
+ </FlippingLabel>
+ );
+ expect(screen.getByLabelText(ariaLabel)).toBeInTheDocument();
+ });
+});