You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by dp...@apache.org on 2018/09/30 17:06:01 UTC

[cordova-lib] branch master updated: Fix 2 integration tests failures on macOS

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

dpogue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-lib.git


The following commit(s) were added to refs/heads/master by this push:
     new 17508a7  Fix 2 integration tests failures on macOS
17508a7 is described below

commit 17508a757c16e4fa6255a0e568907465af471bf9
Author: Darryl Pogue <da...@ayogo.com>
AuthorDate: Sat Sep 29 23:47:49 2018 -0700

    Fix 2 integration tests failures on macOS
---
 spec/helpers.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spec/helpers.js b/spec/helpers.js
index 84e84e5..2f8c446 100644
--- a/spec/helpers.js
+++ b/spec/helpers.js
@@ -36,7 +36,7 @@ function getConfigPath (dir) {
 
 module.exports.tmpDir = function (suffix = 'test') {
     const dir = path.join(os.tmpdir(), `cordova-lib-${suffix}-`);
-    return fs.mkdtempSync(dir);
+    return fs.realpathSync(fs.mkdtempSync(dir));
 };
 
 /**


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