From 709fd057f2f9b29c8aafd696c96f02b9f043368a Mon Sep 17 00:00:00 2001 From: Alexander Sorokin Date: Wed, 5 Oct 2016 15:26:56 +0300 Subject: [PATCH] CB-11959 Fixed filetransfer.spec.21 test failure on iOS and Windows Store when using local server --- tests/tests.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) {