Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andybalaam committed Mar 15, 2022
1 parent 2c75a3b commit 88cd6ea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/components/views/location/LocationShareMenu-test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -261,15 +261,15 @@ describe('<LocationShareMenu />', () => {
const component = getComponent();

expect(
getShareTypeOption(component, LocationShareType.Own).length
getShareTypeOption(component, LocationShareType.Own).length,
).toBeTruthy();

expect(
getShareTypeOption(component, LocationShareType.Pin).length
getShareTypeOption(component, LocationShareType.Pin).length,
).toBeTruthy();

expect(
getShareTypeOption(component, LocationShareType.Live).length
getShareTypeOption(component, LocationShareType.Live).length,
).toBeTruthy();
});
});
Expand All @@ -290,15 +290,15 @@ describe('<LocationShareMenu />', () => {

// And all 3 buttons are visible on the LocationShare dialog
expect(
getShareTypeOption(component, LocationShareType.Own).length
getShareTypeOption(component, LocationShareType.Own).length,
).toBeTruthy();

expect(
getShareTypeOption(component, LocationShareType.Pin).length
getShareTypeOption(component, LocationShareType.Pin).length,
).toBeTruthy();

expect(
getShareTypeOption(component, LocationShareType.Live).length
getShareTypeOption(component, LocationShareType.Live).length,
).toBeTruthy();
});
});
Expand Down

0 comments on commit 88cd6ea

Please sign in to comment.