diff options
author | kumavis <aaron@kumavis.me> | 2018-07-03 04:54:05 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-07-03 04:54:05 +0800 |
commit | a89902c1701f2dcc41effc06d2315e515946b2ca (patch) | |
tree | 922408cf99bcca97c956d5860ac80c2c0c472ecc /test/e2e/func.js | |
parent | 055346843bc90a5168151ba2adc9deacedf8afd4 (diff) | |
parent | 4c86f25f5bc4fa18847ca1b77e005afc3f37eddc (diff) | |
download | dexon-wallet-a89902c1701f2dcc41effc06d2315e515946b2ca.tar.gz dexon-wallet-a89902c1701f2dcc41effc06d2315e515946b2ca.tar.zst dexon-wallet-a89902c1701f2dcc41effc06d2315e515946b2ca.zip |
Merge branch 'develop' of github.com:MetaMask/metamask-extension into network-remove-provider-engine
Diffstat (limited to 'test/e2e/func.js')
-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 34c64709..70055265 100644 --- a/test/e2e/func.js +++ b/test/e2e/func.js @@ -57,7 +57,7 @@ async function setupBrowserAndExtension ({ browser, extPath }) { } 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: { |