From 4f3b4df7d16ab7f96e2379e93440b85a8ee9f94a Mon Sep 17 00:00:00 2001 From: sgrebnov Date: Mon, 8 Feb 2016 12:55:47 +0300 Subject: [PATCH] CB-10538 cordova-plugin-inappbrowser timeout issue There are some google scripts on Apache home page preventing page to fully loaded in time in some cases. Switched to Apache Community home page as test page and increased timeout just in case. github close #149 --- tests/tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests.js b/tests/tests.js index 706f3a8..03e3e12 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -42,13 +42,13 @@ exports.defineAutoTests = function () { var iabInstance; var originalTimeout; - var url = 'http://apache.org/'; + var url = 'https://dist.apache.org/repos/dist/dev/cordova/'; var badUrl = 'http://bad-uri/'; beforeEach(function () { // increase timeout to ensure test url could be loaded within test time originalTimeout = jasmine.DEFAULT_TIMEOUT_INTERVAL; - jasmine.DEFAULT_TIMEOUT_INTERVAL = 15000; + jasmine.DEFAULT_TIMEOUT_INTERVAL = 30000; iabInstance = null; });