Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2fa6edc

Browse files
committedApr 14, 2024·
fix(test): findpath
1 parent da1edac commit 2fa6edc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎js/selenium/builder/builder.test.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ describe('NW.js Selenium Builder test suite', async () => {
2727

2828
options.addArguments(seleniumArguments);
2929

30-
options.setChromeBinaryPath(findpath());
30+
const nwPath = await findpath('nwjs', { flavor: 'sdk' });
31+
options.setChromeBinaryPath(nwPath);
3132

3233
/* Create a new session using the Chromium options and DriverService defined above. */
3334
driver = new selenium

0 commit comments

Comments
 (0)
Please sign in to comment.