# Deep Mock of Browser
# Problem
The browser
object in web-extensions is a deeply nested API, which requires you to call it like this:
my-web-extension.ts
async function getActiveTabs() {
return await browser.tabs.query({ active: true });
}
function onBeforeRedirect(callback: () => void) {
browser.webRequest.onBeforeRedirect.addListener(callback, filter);
return () => browser.webRequest.onBeforeRedirect.removeListener(callback);
}
...
# Solution
By using the power of mockzilla (opens new window) project, this project provides a globally available mockBrowser object to use in your tests:
my-web-extension.spec.ts
describe("Web-Extension Helpers", () => {
describe("getActiveTabs()", () => {
it("should return active tabs", async () => {
const tabs: any[] = [{id: 1}, {id: 2}];
mockBrowser.tabs.query.expect({ active: true }).andResolve(tabs);
expect(await getActiveTabs()).toEqual(tabs);
});
});
describe("onBeforeRedirect()", () => {
it("should register a listener and return a handle to remove the listener again", () => {
const listener = jest.fn();
mockBrowser.webRequest.onBeforeRedirect.addListener.expect(listener, expect.anything());
const removeListener = onBeforeRedirect(listener);
mockBrowser.webRequest.onBeforeRedirect.removeListener.expect(listener);
removeListener();
});
});
});
# More Details
See the documentation of mockzilla (opens new window) to find out more about how you can use this API.
← Setup Event Mocking →