Skip to content

Commit

Permalink
Fixed Failing Test
Browse files Browse the repository at this point in the history
  • Loading branch information
git-init-priyanshu committed Mar 20, 2024
1 parent c5862e4 commit 42bc5b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/LeftDrawer/LeftDrawer.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ describe('Testing Left Drawer component for SUPERADMIN', () => {
const rolesBtn = screen.getByTestId(/rolesBtn/i);

expect(
orgsBtn.className.includes('text-secondary btn btn-light'),
orgsBtn.className.includes('text-white btn btn-success'),
).toBeTruthy();
expect(
rolesBtn.className.includes('text-white btn btn-success'),
rolesBtn.className.includes('text-secondary btn btn-light'),
).toBeTruthy();
});

Expand Down

0 comments on commit 42bc5b5

Please sign in to comment.