-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: align platformWorkspaceApi with official PR
- Loading branch information
Showing
1 changed file
with
6 additions
and
7 deletions.
There are no files selected for viewing
13 changes: 6 additions & 7 deletions
13
force-app/test/jest-mocks/lightning/platformWorkspaceApi.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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()); |