Skip to content

Commit 5a6b16e

Browse files
authored
Fix tool/test.sh with xvfb-run (#42)
1 parent dc67923 commit 5a6b16e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tool/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ DEVICE_IDS=$(flutter devices --machine | grep '"sdk"')
4242
for DEVICE in linux android; do
4343
if echo "$DEVICE_IDS" | grep -i "$DEVICE" > /dev/null; then
4444
section "Running integration tests on $DEVICE"
45-
flutter test integration_test/webcrypto_test.dart -d "$DEVICE"
45+
xvfb-run flutter test integration_test/webcrypto_test.dart -d "$DEVICE"
4646
else
4747
section "Skipping integration tests on $DEVICE (missing device)"
4848
fi

0 commit comments

Comments
 (0)