blob: c390b71011cc469b9b709a83974cd903d6825dbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
var { XPCOMUtils } = ChromeUtils.importESModule(
"resource://gre/modules/XPCOMUtils.sys.mjs"
);
var { sinon } = ChromeUtils.importESModule(
"resource://testing-common/Sinon.sys.mjs"
);
XPCOMUtils.defineLazyGetter(this, "FxAccountsCommon", function () {
return ChromeUtils.import("resource://gre/modules/FxAccountsCommon.js");
});
do_get_profile(); // fxa needs a profile directory for storage.
|