Skip to content

Commit

Permalink
Fix e2es
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusroemer committed Feb 25, 2024
1 parent cb738cf commit be2a300
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion website/src/components/User/UserPage.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const keycloakLogoutUrl = (await getKeycloakClient()).endSessionUrl({
});
---

<BaseLayout title='Account'>
<BaseLayout title='My account'>
<div class='flex items-center'>
<h1 class='title'>{name} ({username})</h1>
</div>
Expand Down
4 changes: 2 additions & 2 deletions website/tests/pages/navigation.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { baseUrl, dummyOrganism, test } from '../e2e.fixture';

const organismIndependentNavigationItems = [
{ link: 'User', title: 'Login' },
{ link: 'User', title: 'My account' },
{ link: 'About', title: 'About' },
{ link: 'Api documentation', title: 'Api Docs' },
{ link: 'Governance', title: 'Governance' },
Expand All @@ -11,7 +11,7 @@ const organismIndependentNavigationItems = [
const organismNavigationItems = [
{ link: 'Search', title: '[Organism] - Browse' },
{ link: 'Submit', title: 'Submit' },
{ link: 'User', title: 'Login' },
{ link: 'User', title: 'My account' },
{ link: 'Sequence Overview', title: 'Sequences' },
];

Expand Down

0 comments on commit be2a300

Please sign in to comment.