From 2168c36a5f602cfb910a98ff8579497ac20eb8b3 Mon Sep 17 00:00:00 2001 From: Svetoslav Date: Wed, 9 May 2018 13:17:32 +0300 Subject: [PATCH] tests: disable all tests related to outside urls (#5800) --- tests/app/testRunner.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/app/testRunner.ts b/tests/app/testRunner.ts index 1e753fe44..ab72eccbe 100644 --- a/tests/app/testRunner.ts +++ b/tests/app/testRunner.ts @@ -45,14 +45,14 @@ allTests["PLATFORM"] = platformTests; import * as fsTests from "./file-system/file-system-tests"; allTests["FILE-SYSTEM"] = fsTests; -import * as httpTests from "./http/http-tests"; -allTests["HTTP"] = httpTests; +// import * as httpTests from "./http/http-tests"; +// allTests["HTTP"] = httpTests; -import * as xhrTests from "./xhr/xhr-tests"; -allTests["XHR"] = xhrTests; +// import * as xhrTests from "./xhr/xhr-tests"; +// allTests["XHR"] = xhrTests; -import * as fetchTests from "./fetch/fetch-tests"; -allTests["FETCH"] = fetchTests; +// import * as fetchTests from "./fetch/fetch-tests"; +// allTests["FETCH"] = fetchTests; import * as appSettingsTests from "./application-settings/application-settings-tests"; allTests["APPLICATION-SETTINGS"] = appSettingsTests;