diff options
| author | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-06-13 00:38:30 +0800 | 
|---|---|---|
| committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-06-13 00:41:20 +0800 | 
| commit | c56ed16891e3fa9665ad5e5b72da8b26b5aa1a54 (patch) | |
| tree | 012f5317114c78c687ffd3b47d77df40585030c9 /test/e2e | |
| parent | b7a469681bdadd77f8c09da254db91dad820a7a1 (diff) | |
| download | tangerine-wallet-browser-c56ed16891e3fa9665ad5e5b72da8b26b5aa1a54.tar.gz tangerine-wallet-browser-c56ed16891e3fa9665ad5e5b72da8b26b5aa1a54.tar.zst tangerine-wallet-browser-c56ed16891e3fa9665ad5e5b72da8b26b5aa1a54.zip | |
Fix e2e test Chrome profile paths
Diffstat (limited to 'test/e2e')
| -rw-r--r-- | test/e2e/func.js | 2 | 
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: { | 
