Skip to content

Commit 9e80ea0

Browse files
committed
update versions
1 parent bc30edd commit 9e80ea0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/runserver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
echo "Starting server $HOME"
33
source $HOME/.nvm/nvm.sh
44
cd $HOME/js-framework-benchmark/server
5-
node index.js
5+
./node_modules/.bin/tsx index.ts

webdriver-ts/src/puppeteerAccess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function browserPath(benchmarkOptions: BenchmarkOptions) {
9595
if (process.platform == "darwin") {
9696
return "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome";
9797
} else if (process.platform == "linux") {
98-
return "google-chrome";
98+
return "/usr/bin/google-chrome";
9999
} else if (/^win/i.test(process.platform)) {
100100
// eslint-disable-next-line unicorn/prefer-string-raw
101101
return "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe";

0 commit comments

Comments
 (0)