passbolt-styleguide
Version:
Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.
17 lines (14 loc) • 460 B
JavaScript
// Disable console debug, warning and error while executing the tests.
// Keep console log as it can be useful for testing.
global.console = {
...console,
debug: jest.fn(),
error: jest.fn(),
warning: jest.fn()
};
global.scrollTo = jest.fn();
/*
* Fix jest-webextension-mock after upgrading webextension-polyfill to 0.9.0
* @see https://github.com/clarkbw/jest-webextension-mock/issues/149#issuecomment-1116558554
*/
chrome.runtime.id = "test id";