blob: 6699eb7a1c184340a4af2b5682cfe28424af1a66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
ChromeUtils.defineESModuleGetters(this, {
pktApi: "chrome://pocket/content/pktApi.sys.mjs",
});
XPCOMUtils.defineLazyScriptGetter(
this,
"pktUI",
"chrome://pocket/content/pktUI.js"
);
const { sinon } = ChromeUtils.importESModule(
"resource://testing-common/Sinon.sys.mjs"
);
|