diff --git a/src/components/common/links/__snapshots__/internal-link.test.tsx.snap b/src/components/common/links/__snapshots__/internal-link.test.tsx.snap
new file mode 100644
index 000000000..d60ebf423
--- /dev/null
+++ b/src/components/common/links/__snapshots__/internal-link.test.tsx.snap
@@ -0,0 +1,62 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`InternalLink renders an internal link correctly 1`] = `
+
+`;
+
+exports[`InternalLink renders an internal link with a title 1`] = `
+
+`;
+
+exports[`InternalLink renders an internal link with additional className 1`] = `
+
+`;
+
+exports[`InternalLink renders an internal link with an icon 1`] = `
+
+`;
+
+exports[`InternalLink renders an internal link with an id 1`] = `
+
+`;
diff --git a/src/components/common/links/internal-link.test.tsx b/src/components/common/links/internal-link.test.tsx
new file mode 100644
index 000000000..e6145cb5c
--- /dev/null
+++ b/src/components/common/links/internal-link.test.tsx
@@ -0,0 +1,33 @@
+/*
+ * SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
+ *
+ * SPDX-License-Identifier: AGPL-3.0-only
+ */
+
+import { render } from '@testing-library/react'
+import { InternalLink } from './internal-link'
+
+describe('InternalLink', () => {
+ const href = '/test'
+ const text = 'testText'
+ it('renders an internal link correctly', () => {
+ const view = render()
+ expect(view.container).toMatchSnapshot()
+ })
+ it('renders an internal link with an icon', () => {
+ const view = render()
+ expect(view.container).toMatchSnapshot()
+ })
+ it('renders an internal link with an id', () => {
+ const view = render()
+ expect(view.container).toMatchSnapshot()
+ })
+ it('renders an internal link with additional className', () => {
+ const view = render()
+ expect(view.container).toMatchSnapshot()
+ })
+ it('renders an internal link with a title', () => {
+ const view = render()
+ expect(view.container).toMatchSnapshot()
+ })
+})