Skip to content

Commit

Permalink
fix: add data-cy to the configuration menu button
Browse files Browse the repository at this point in the history
  • Loading branch information
dv-usama-ansari committed Feb 22, 2024
1 parent e72d8dd commit 19950e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/header/ConfigurationMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ export function ConfigurationMenu({ menu, dvLogo, aboutAppModal }: { menu: JSX.E
</>
) : null}
<Menu.Label>About</Menu.Label>
<Menu.Item onClick={() => setShowAboutModal(true)}>About {appName}</Menu.Item>
<Menu.Item data-testid="visyn-configuration-menu-about-app-button" onClick={() => setShowAboutModal(true)}>
About {appName}
</Menu.Item>
</Menu.Dropdown>
</Menu>
<AboutAppModal
Expand Down

0 comments on commit 19950e1

Please sign in to comment.