Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Add chrome storage api
const QUOTA_BYTES = 10;
const storage = {
local: {
set: jest.fn(),
get: jest.fn(),
remove: jest.fn(),
QUOTA_BYTES,
getBytesInUse: jest.fn(),
clear: jest.fn(),
},
session: {
has: jest.fn(),
};
const runtime = {
onMessage: {
addListener: jest.fn(),
sendMessage: jest.fn(),
getManifest: jest.fn(),
const contextMenus = {
create: jest.fn(),
removeAll: jest.fn(),
const i18n = {
getMessage: jest.fn(),
const tabs = {
executeScript: jest.fn(),
const scripting = {
// set chrome
global.chrome = {
i18n,
storage,
runtime,
contextMenus,
tabs,
scripting,
} as any;