| 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"); |
|
Sebastian Noack
2019/01/30 19:54:25
Shouldn't we rather remove the isThridParty() chec
Manish Jethani
2019/01/31 01:04:14
Done.
|
| + const {extractHostFromFrame} = require("../../lib/url"); |
| const {platform} = require("info"); |
| QUnit.module("URL/host tools"); |
| test("Extracting hostname from frame", () => |
| { |
| function testFrameHostname(hierarchy, expectedHostname, message) |
| { |