Skip to content

Commit

Permalink
fix tests and typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgrzybowski committed Jan 16, 2025
1 parent 36c1238 commit 6d1010f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Navigation/BottomTabBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type BottomTabName = ValueOf<typeof BOTTOM_TABS>;

type BottomTabBarProps = {
selectedTab: BottomTabName;
tooltipAllowed: boolean | undefined;
tooltipAllowed?: boolean;
};

/**
Expand Down
1 change: 1 addition & 0 deletions tests/unit/SidebarTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import wrapOnyxWithWaitForBatchedUpdates from '../utils/wrapOnyxWithWaitForBatch
// Be sure to include the mocked Permissions and Expensicons libraries or else the beta tests won't work
jest.mock('@src/libs/Permissions');
jest.mock('@src/components/Icon/Expensicons');
jest.mock('@src/hooks/useRootNavigationState');

const TEST_USER_ACCOUNT_ID = 1;
const TEST_USER_LOGIN = '[email protected]';
Expand Down

0 comments on commit 6d1010f

Please sign in to comment.