fix(test): change to lowercase

Co-authored-by: Bilawal Hameed <bil@spotify.com>
This commit is contained in:
Emma Indal
2020-07-03 11:38:27 +02:00
committed by Emma Indal
parent 6f3a8ee90a
commit 3e3dff511b
@@ -21,6 +21,6 @@ import { wrapInTestApp } from '@backstage/test-utils';
describe('TechDocs Not Found', () => {
it('should render a Documentation not found page', async () => {
const { queryByText } = render(wrapInTestApp(<TechDocsNotFound />));
expect(queryByText(/Error: Documentation not found/i)).toBeInTheDocument();
expect(queryByText(/error: documentation not found/i)).toBeInTheDocument();
});
});