Index: qunit/tests/url.js |
=================================================================== |
--- a/qunit/tests/url.js |
+++ b/qunit/tests/url.js |
@@ -13,17 +13,18 @@ |
* |
* You should have received a copy of the GNU General Public License |
* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
*/ |
"use strict"; |
{ |
- const {extractHostFromFrame, isThirdParty} = require("../../lib/url"); |
+ const {isThirdParty} = require("../../adblockpluscore/lib/domain"); |
Manish Jethani
2019/01/29 05:06:30
I don't think we need to keep these tests in adblo
|
+ const {extractHostFromFrame} = require("../../lib/url"); |
const {platform} = require("info"); |
QUnit.module("URL/host tools"); |
test("Extracting hostname from frame", () => |
{ |
function testFrameHostname(hierarchy, expectedHostname, message) |
{ |