diff --git a/spiffworkflow-frontend/cypress/e2e/tasks.cy.js b/spiffworkflow-frontend/cypress/e2e/tasks.cy.js
index 86298f599..377b05ac6 100644
--- a/spiffworkflow-frontend/cypress/e2e/tasks.cy.js
+++ b/spiffworkflow-frontend/cypress/e2e/tasks.cy.js
@@ -21,6 +21,7 @@ describe('tasks', () => {
cy.logout();
});
+ // TODO: need to fix the next_task thing to make this pass
it('can complete and navigate a form', () => {
const groupDisplayName = 'Acceptance Tests Group One';
const modelId = `acceptance-tests-model-2`;
diff --git a/spiffworkflow-frontend/cypress/support/commands.js b/spiffworkflow-frontend/cypress/support/commands.js
index 3a1a0ac40..affce0d10 100644
--- a/spiffworkflow-frontend/cypress/support/commands.js
+++ b/spiffworkflow-frontend/cypress/support/commands.js
@@ -31,7 +31,9 @@ Cypress.Commands.add('getBySel', (selector, ...args) => {
});
Cypress.Commands.add('navigateToHome', () => {
- cy.getBySel('nav-home').click();
+ cy.get('button[aria-label="Open menu"]').click();
+ cy.getBySel('side-nav-items').contains('Home').click();
+ // cy.getBySel('nav-home').click();
});
Cypress.Commands.add('navigateToAdmin', () => {
diff --git a/spiffworkflow-frontend/src/components/NavigationBar.tsx b/spiffworkflow-frontend/src/components/NavigationBar.tsx
index 4dd81f9a1..3f7e124d5 100644
--- a/spiffworkflow-frontend/src/components/NavigationBar.tsx
+++ b/spiffworkflow-frontend/src/components/NavigationBar.tsx
@@ -123,10 +123,14 @@ export default function NavigationBar() {
-
+
{headerMenuItems()}