Skip to content

Commit c423b1d

Browse files
authored
Fix e2e tests on linux (#383)
1 parent cc5318b commit c423b1d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ build-docs: clean-docs build-buf
9595
.PHONY: install-playwright
9696
install-playwright:
9797
cd e2e && npm install
98-
cd e2e && npx playwright install --with-deps chrome
98+
cd e2e && npx playwright install --with-deps
9999

100100
e2e/bin/viam-server:
101101
bash e2e/setup.sh

e2e/setup.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ mkdir -p $BIN_DIR
1111

1212
if [ "$(uname)" == "Linux" ]; then
1313
if [ "$(uname -m)" == "aarch64" ]; then
14-
curl https://storage.googleapis.com/packages.viam.com/apps/viam-server/viam-server-stable-aarch64.AppImage -o $BIN_PATH
14+
curl https://storage.googleapis.com/packages.viam.com/apps/viam-server/viam-server-stable-aarch64 -o $BIN_PATH
1515
elif [ "$(uname -m)" == "x86_64" ]; then
16-
curl https://storage.googleapis.com/packages.viam.com/apps/viam-server/viam-server-stable-x86_64.AppImage -o $BIN_PATH
16+
curl https://storage.googleapis.com/packages.viam.com/apps/viam-server/viam-server-stable-x86_64 -o $BIN_PATH
1717
else
1818
echo -e "Cannot run E2E tests on $(uname -m)"
1919
exit 1

0 commit comments

Comments
 (0)