diff --git a/app/pages/not-found/NotFoundPage.js b/app/pages/not-found/NotFoundPage.js
index 41a534f43..a88fea0d6 100644
--- a/app/pages/not-found/NotFoundPage.js
+++ b/app/pages/not-found/NotFoundPage.js
@@ -15,7 +15,7 @@ function NotFoundPage({ t }) {
{t('NotFoundPage.title')}
{t('NotFoundPage.lead')}
- {t('NotFoundPage.helpHeader')}
+ {t('NotFoundPage.helpHeader')}
-
{
expect(h1.props().children).toBe('NotFoundPage.title');
});
+ test('renders a Well component', () => {
+ const well = getWrapper().find(Well);
+ expect(well.length).toBe(1);
+ });
+
+ test('renders correct help header text within Well', () => {
+ const p = getWrapper().find(Well).find('p');
+ expect(p.length).toBe(1);
+ expect(p.prop('className')).toBe('h4');
+ expect(p.props().children).toBe('NotFoundPage.helpHeader');
+ });
+
test('renders a list and list elements for displaying help to user', () => {
const ul = getWrapper().find('ul');
const lis = getWrapper().find('li');