fix(test): remove async

Co-authored-by: Bilawal Hameed <bil@spotify.com>
This commit is contained in:
Emma Indal
2020-07-03 11:37:37 +02:00
committed by Emma Indal
parent cabd540abb
commit 6f3a8ee90a
@@ -19,7 +19,7 @@ import { render } from '@testing-library/react';
import { wrapInTestApp } from '@backstage/test-utils';
describe('TechDocs Home', () => {
it('should render a TechDocs home page', async () => {
it('should render a TechDocs home page', () => {
const { getByTestId, queryByText } = render(
wrapInTestApp(<TechDocsHome />),
);