mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 720985 - Make some tests stop polluting the global scope
This commit is contained in:
parent
5100aaee99
commit
be33215b58
@ -5,7 +5,9 @@
|
||||
// - https://github.com/mozilla/gcli/blob/master/docs/index.md
|
||||
// - https://wiki.mozilla.org/DevTools/Features/GCLI
|
||||
|
||||
Components.utils.import("resource:///modules/gcli.jsm");
|
||||
let tmp = {};
|
||||
Components.utils.import("resource:///modules/gcli.jsm", tmp);
|
||||
let gcli = tmp.gcli;
|
||||
|
||||
let hud;
|
||||
let gcliterm;
|
||||
|
@ -4,7 +4,9 @@
|
||||
|
||||
// Tests that the metadata request includes startup time measurements
|
||||
|
||||
Components.utils.import("resource://gre/modules/AddonRepository.jsm");
|
||||
let tmp = {};
|
||||
Components.utils.import("resource://gre/modules/AddonRepository.jsm", tmp);
|
||||
let AddonRepository = tmp.AddonRepository;
|
||||
|
||||
var gManagerWindow;
|
||||
var gProvider;
|
||||
|
Loading…
Reference in New Issue
Block a user