diff --git a/test/unit/rule-matching.js b/test/unit/rule-matching.js index e025d51..0b17ed5 100644 --- a/test/unit/rule-matching.js +++ b/test/unit/rule-matching.js @@ -13,8 +13,8 @@ const addonLibPath = path.join(__dirname, "..", "..", "add-on", "lib"); // These will end up not returing anything, but will instead populate // window.WEB_API_MANAGER -const webAPIInitStub = require(path.join(addonLibPath, "init.js")); -const domainMatcherStub = require(path.join(addonLibPath, "domainmatcher.js")); +require(path.join(addonLibPath, "init.js")); +require(path.join(addonLibPath, "domainmatcher.js")); const domainMatcherLib = window.WEB_API_MANAGER.domainMatcherLib; describe("Host Pattern Matching", function () { @@ -72,4 +72,4 @@ describe("Host Pattern Matching", function () { done(); }); }); -}); \ No newline at end of file +});