Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benkeen committed Aug 7, 2021
1 parent 263eaac commit c3f7ecd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/core/account/Account.component.tsx
Expand Up @@ -47,7 +47,7 @@ const AccountPage = ({ selectedTab, onChangeTab, i18n }: AccountPageProps): JSX.
};

return (
<section className={sharedStyles.twoColPage}>
<section className={sharedStyles.twoColPage} data-automation="account-page">
<nav>
<ul>
<li
Expand Down
Expand Up @@ -16,7 +16,7 @@ describe('Account component', () => {
/>
);

const page = container.querySelector('.accountPage');
const page = container.querySelector('[data-automation=account-page]');
expect(page).toBeTruthy();
});
});

0 comments on commit c3f7ecd

Please sign in to comment.