Skip to content

Commit

Permalink
feat: align platformWorkspaceApi with official PR
Browse files Browse the repository at this point in the history
  • Loading branch information
pozil committed May 23, 2024
1 parent d23a8e8 commit 413734f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions force-app/test/jest-mocks/lightning/platformWorkspaceApi.js
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
import { createTestWireAdapter } from '@salesforce/wire-service-jest-util';

// Mock values that are not part of lightning/platformWorkspaceApi
// Mock values that are not part of the lightning/platformWorkspaceApi signature
// In this default test scenario, we assume that two tabs are open, and the first one is focused
export const TAB0 = 'tab0';
export const TAB1 = 'tab1';
// In our mock, we assume that two tabs are open, and the first one is focused
export const FOCUSED_TAB_ID = TAB0;
export const ENCLOSING_TAB_ID = TAB0;
export const OPEN_TABS = [{ tabId: TAB0 }, { tabId: TAB1 }];

// Mocked methods and attributes from lightning/platformWorkspaceApi
// Mocked methods and wires that are part of the lightning/platformWorkspaceApi signature
export const closeTab = jest.fn().mockResolvedValue(true);
export const disableTabClose = jest.fn().mockResolvedValue(true);
export const focusTab = jest.fn().mockResolvedValue(true);
export const getAllTabInfo = jest
.fn()
.mockResolvedValue([{ tabId: TAB0 }, { tabId: 'tab1' }]);
export const getAllTabInfo = jest.fn().mockResolvedValue(OPEN_TABS);
export const getFocusedTabInfo = jest.fn().mockResolvedValue({ tabId: TAB0 });
export const getTabInfo = jest.fn().mockResolvedValue({ tabId: TAB0 });
export const openSubtab = jest.fn().mockResolvedValue(true);
export const openTab = jest.fn().mockResolvedValue(true);
export const refreshTab = jest.fn().mockResolvedValue(true);
export const setTabHighlighted = jest.fn().mockResolvedValue(true);
export const setTabIcon = jest.fn().mockResolvedValue(true);
export const setTabLabel = jest.fn().mockResolvedValue(true);
export const setTabHighlighted = jest.fn().mockResolvedValue(true);

export const EnclosingTabId = createTestWireAdapter(jest.fn());
export const IsConsoleNavigation = createTestWireAdapter(jest.fn());

0 comments on commit 413734f

Please sign in to comment.