CB-11959 Fixed filetransfer.spec.21 test failure on iOS and Windows Store when using local server
Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/commit/709fd057 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/tree/709fd057 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/diff/709fd057 Branch: refs/heads/1.6.x Commit: 709fd057f2f9b29c8aafd696c96f02b9f043368a Parents: ed88cfc Author: Alexander Sorokin <[email protected]> Authored: Wed Oct 5 15:26:56 2016 +0300 Committer: Alexander Sorokin <[email protected]> Committed: Wed Oct 5 15:26:56 2016 +0300 ---------------------------------------------------------------------- tests/tests.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer/blob/709fd057/tests/tests.js ---------------------------------------------------------------------- diff --git a/tests/tests.js b/tests/tests.js index 43fc3cd..f4fd636 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -1075,7 +1075,10 @@ exports.defineAutoTests = function () { }, GRACE_TIME_DELTA); }; - writeFile(specContext.root, specContext.fileName, new Array(200000).join("aborttest!"), fileWin, done); + // windows store and ios are too fast, win is called before we have a chance to abort + // so let's get them busy - while not providing an extra load to the slow Android emulators + var arrayLength = (isWindows || isIos) ? 1000000 : 200000; + writeFile(specContext.root, specContext.fileName, new Array(arrayLength).join("aborttest!"), fileWin, done); }, UPLOAD_TIMEOUT); it("filetransfer.spec.22 should get http status and body on failure", function (done) { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
