We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc30edd commit 9e80ea0Copy full SHA for 9e80ea0
server/runserver.sh
@@ -2,4 +2,4 @@
2
echo "Starting server $HOME"
3
source $HOME/.nvm/nvm.sh
4
cd $HOME/js-framework-benchmark/server
5
-node index.js
+./node_modules/.bin/tsx index.ts
webdriver-ts/src/puppeteerAccess.ts
@@ -95,7 +95,7 @@ function browserPath(benchmarkOptions: BenchmarkOptions) {
95
if (process.platform == "darwin") {
96
return "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome";
97
} else if (process.platform == "linux") {
98
- return "google-chrome";
+ return "/usr/bin/google-chrome";
99
} else if (/^win/i.test(process.platform)) {
100
// eslint-disable-next-line unicorn/prefer-string-raw
101
return "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe";
0 commit comments