You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ja...@apache.org on 2018/02/14 16:32:27 UTC

[cordova-windows] branch janpio-e2e_speedup updated: fix eslint

This is an automated email from the ASF dual-hosted git repository.

janpio pushed a commit to branch janpio-e2e_speedup
in repository https://gitbox.apache.org/repos/asf/cordova-windows.git


The following commit(s) were added to refs/heads/janpio-e2e_speedup by this push:
     new e19b371  fix eslint
e19b371 is described below

commit e19b37171f96d50b9575487d5fe5dbc94ecb1746
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Wed Feb 14 17:32:15 2018 +0100

    fix eslint
---
 spec/e2e/endtoend.spec.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/spec/e2e/endtoend.spec.js b/spec/e2e/endtoend.spec.js
index 89df2f7..d347b66 100644
--- a/spec/e2e/endtoend.spec.js
+++ b/spec/e2e/endtoend.spec.js
@@ -41,22 +41,22 @@ describe('Cordova create and build', function () {
 
     function verifySubDirContainsFile (subDirName, fileName, count) {
         count = typeof count !== 'undefined' ? count : 1;
-    
+
         var subDir = path.join(appPackagesFolder, subDirName);
         var packages = shell.ls(subDir);
         expect(packages.filter(function (file) { return file.match(fileName); }).length).toBe(count);
     }
-    
+
     function _expectExist (fileNamePattern, count) {
         count = typeof count !== 'undefined' ? count : 1;
     
         var packages = shell.ls(appPackagesFolder);
         expect(packages.filter(function (file) { return file.match(fileNamePattern); }).length).toBe(count);
     }
-    
+
     function _expectSubdirAndFileExist (subDirName, fileName, count) {
         count = typeof count !== 'undefined' ? count : 1;
-    
+
         _expectExist(subDirName);
         verifySubDirContainsFile(subDirName, fileName, count);
     }

-- 
To stop receiving notification emails like this one, please contact
janpio@apache.org.

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org