aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/widgets/sharing.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/widgets/sharing.test.tsx')
-rw-r--r--src/components/organisms/widgets/sharing.test.tsx24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/components/organisms/widgets/sharing.test.tsx b/src/components/organisms/widgets/sharing.test.tsx
deleted file mode 100644
index c7211f0..0000000
--- a/src/components/organisms/widgets/sharing.test.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import { describe, expect, it } from '@jest/globals';
-import { render, screen as rtlScreen } from '../../../../tests/utils';
-import { Sharing, type SharingData } from './sharing';
-
-const postData: SharingData = {
- excerpt: 'A post excerpt',
- title: 'A post title',
- url: 'https://sharing-website.test',
-};
-
-describe('Sharing', () => {
- it('renders a sharing widget', () => {
- render(<Sharing data={postData} media={['facebook', 'twitter']} />);
- expect(
- rtlScreen.getByRole('link', { name: 'Share on Facebook' })
- ).toBeInTheDocument();
- expect(
- rtlScreen.getByRole('link', { name: 'Share on Twitter' })
- ).toBeInTheDocument();
- expect(
- rtlScreen.queryByRole('link', { name: 'Share on LinkedIn' })
- ).not.toBeInTheDocument();
- });
-});