Repository: cordova-plugin-inappbrowser Updated Branches: refs/heads/master 234cca4e5 -> 4f3b4df7d
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 Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/commit/4f3b4df7 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/tree/4f3b4df7 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/diff/4f3b4df7 Branch: refs/heads/master Commit: 4f3b4df7d16ab7f96e2379e93440b85a8ee9f94a Parents: 234cca4 Author: sgrebnov <[email protected]> Authored: Mon Feb 8 12:55:47 2016 +0300 Committer: sgrebnov <[email protected]> Committed: Mon Feb 8 14:12:26 2016 +0300 ---------------------------------------------------------------------- tests/tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/blob/4f3b4df7/tests/tests.js ---------------------------------------------------------------------- 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; }); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
