aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-06-13 01:44:13 +0800
committerGitHub <noreply@github.com>2018-06-13 01:44:13 +0800
commitf08442e266e4acb2b7f90acfe0f9e54e7704b8aa (patch)
tree012f5317114c78c687ffd3b47d77df40585030c9
parentb7a469681bdadd77f8c09da254db91dad820a7a1 (diff)
parentc56ed16891e3fa9665ad5e5b72da8b26b5aa1a54 (diff)
downloadtangerine-wallet-browser-f08442e266e4acb2b7f90acfe0f9e54e7704b8aa.tar.gz
tangerine-wallet-browser-f08442e266e4acb2b7f90acfe0f9e54e7704b8aa.tar.zst
tangerine-wallet-browser-f08442e266e4acb2b7f90acfe0f9e54e7704b8aa.zip
Merge pull request #4554 from whymarrh/fix-e2e-profile-path
Fix temp Chrome profile path used for e2e tests
-rw-r--r--test/e2e/func.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/func.js b/test/e2e/func.js
index 9f06e7f37..7b1730959 100644
--- a/test/e2e/func.js
+++ b/test/e2e/func.js
@@ -21,7 +21,7 @@ function delay (time) {
}
function buildChromeWebDriver (extPath) {
- const tmpProfile = path.join(os.tmpdir(), fs.mkdtempSync('mm-chrome-profile'));
+ const tmpProfile = fs.mkdtempSync(path.join(os.tmpdir(), 'mm-chrome-profile'))
return new webdriver.Builder()
.withCapabilities({
chromeOptions: {