Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kubabutkiewicz committed Feb 13, 2025
1 parent 3103933 commit b1a180e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/ui/components/TabSelectorItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,18 @@ import Tooltip from '@components/Tooltip';

// Mock the Tooltip component since it uses portals which aren't supported in RNTL
jest.mock('@components/Tooltip');
jest.mock('@libs/Fullstory', () => ({
default: {
consentAndIdentify: jest.fn(),
},
parseFSAttributes: jest.fn(),
}));

describe('TabSelectorItem Component', () => {
const title = 'Test Tab';

beforeEach(() => {
// wrapOnyxWithWaitForBatchedUpdates(Onyx);
jest.clearAllMocks();
});

Expand Down

0 comments on commit b1a180e

Please sign in to comment.