diff options
| author | Sean King <seanking2919@protonmail.com> | 2023-03-30 15:30:03 -0600 |
|---|---|---|
| committer | Sean King <seanking2919@protonmail.com> | 2023-03-30 15:30:03 -0600 |
| commit | 22fd3afd160d27c9ab43fcc8d1270db455403f8e (patch) | |
| tree | f1c918315f7af7a383e3fc2789fde9ee03c9027c /test/e2e | |
| parent | cfb390ee8b8ec1770fe6661483c7b80a3e70ca00 (diff) | |
Change selenium server path to use require instead of hardcoding it
Diffstat (limited to 'test/e2e')
| -rw-r--r-- | test/e2e/nightwatch.conf.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/nightwatch.conf.js b/test/e2e/nightwatch.conf.js index 4041c698..fdd2fda2 100644 --- a/test/e2e/nightwatch.conf.js +++ b/test/e2e/nightwatch.conf.js @@ -9,7 +9,7 @@ module.exports = { selenium: { start_process: true, - server_path: 'node_modules/selenium-server/lib/runner/selenium-server-standalone-2.53.1.jar', + server_path: require('selenium-server').path, host: '127.0.0.1', port: 4444, cli_args: { |
