Skip to content

Commit

Permalink
Revert "Merge remote-tracking branch 'origin/git-hooks-libms' into gi…
Browse files Browse the repository at this point in the history
…t-hooks-libms"

This reverts commit c27b33c, reversing
changes made to 3186f10.
  • Loading branch information
lindot11 committed Nov 29, 2023
1 parent c27b33c commit fc5cfd5
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions client/test/unitTests/Components/TabComponent.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('TabComponent', () => {

test('renders an empty tab', () => {
const { getByText } = render(
<TabComponent assetType={assetTypeTabs} scope={scopeTabs} />,
<TabComponent assetType={assetTypeTabs} scope={scopeTabs} />
);
const emptyTab = getByText('Functions');
expect(emptyTab).toBeInTheDocument();
Expand Down Expand Up @@ -60,17 +60,10 @@ describe('TabComponent', () => {
}

expect(
<<<<<<< HEAD
screen.queryByText(assetTypeTabs[0].body.props.children)
).not.toBeInTheDocument();
expect(
screen.queryByText(assetTypeTabs[1].body.props.children)
=======
screen.queryByText(assetTypeTabs[0].body.props.children),
).not.toBeInTheDocument();
expect(
screen.queryByText(assetTypeTabs[1].body.props.children),
>>>>>>> origin/git-hooks-libms
).not.toBeInTheDocument();
});

Expand Down

0 comments on commit fc5cfd5

Please sign in to comment.