Skip to content

Commit

Permalink
feat: stub for lightning/platformWorkspaceApi module (#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
pozil authored May 30, 2024
1 parent 0ef561b commit 45b545c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/lightning-stubs/platformWorkspaceApi/platformWorkspaceApi.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*
* Copyright (c) 2024, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/
import { createTestWireAdapter } from '@salesforce/wire-service-jest-util';

// 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';
export const FOCUSED_TAB_ID = TAB0;
export const ENCLOSING_TAB_ID = TAB0;
export const OPEN_TABS = [{ tabId: TAB0 }, { tabId: TAB1 }];

// 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(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 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 45b545c

Please sign in to comment.