diff options
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 34c64709a..700552658 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: { |