diff --git a/plugins/techdocs-module-addons-contrib/src/ExpandableNavigation/ExpandableNavigation.test.tsx b/plugins/techdocs-module-addons-contrib/src/ExpandableNavigation/ExpandableNavigation.test.tsx
new file mode 100644
index 0000000000..f2fead4fe6
--- /dev/null
+++ b/plugins/techdocs-module-addons-contrib/src/ExpandableNavigation/ExpandableNavigation.test.tsx
@@ -0,0 +1,146 @@
+/*
+ * Copyright 2022 The Backstage Authors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { TechDocsAddonTester } from '@backstage/plugin-techdocs-addons-test-utils';
+
+import React from 'react';
+import { fireEvent, waitFor } from '@testing-library/react';
+
+import { ExpandableNavigation } from '..';
+
+const mockNavWithSublevels = (
+
+);
+
+const mockNavWithoutSublevels = (
+
+);
+
+describe('ExpandableNavigation', () => {
+ it('renders without exploding', async () => {
+ const { getByRole } = await TechDocsAddonTester.buildAddonsInTechDocs([
+ ,
+ ])
+ .withDom(mockNavWithSublevels)
+ .renderWithEffects();
+
+ expect(getByRole('button', { name: 'expand-nav' })).toBeInTheDocument();
+ });
+
+ it('expands and collapses navigation', async () => {
+ const { getByRole, shadowRoot } =
+ await TechDocsAddonTester.buildAddonsInTechDocs([
+ ,
+ ])
+ .withDom(mockNavWithSublevels)
+ .renderWithEffects();
+
+ const toggles =
+ shadowRoot!.querySelectorAll('.md-toggle');
+
+ expect(toggles).toHaveLength(2);
+ toggles.forEach(item => {
+ expect(item).not.toBeChecked();
+ });
+
+ const expandButton = getByRole('button', { name: 'expand-nav' });
+
+ fireEvent.click(expandButton);
+
+ await waitFor(() => {
+ expect(getByRole('button', { name: 'collapse-nav' })).toBeInTheDocument();
+ toggles.forEach(item => {
+ expect(item).toBeChecked();
+ });
+ });
+
+ const collapseButton = getByRole('button', { name: 'collapse-nav' });
+
+ fireEvent.click(collapseButton);
+
+ await waitFor(() => {
+ toggles.forEach(item => {
+ expect(item).not.toBeChecked();
+ });
+ });
+ });
+
+ it('does not render when navigation has no sublevels', async () => {
+ const { queryByRole } = await TechDocsAddonTester.buildAddonsInTechDocs([
+ ,
+ ])
+ .withDom(mockNavWithoutSublevels)
+ .renderWithEffects();
+
+ expect(
+ queryByRole('button', { name: 'expand-nav' }),
+ ).not.toBeInTheDocument();
+ });
+});