From 5a6b16e351fbacbaf4b40ea5b26bb07124a51368 Mon Sep 17 00:00:00 2001 From: Jonas Finnemann Jensen Date: Tue, 27 Sep 2022 17:10:30 +0200 Subject: [PATCH] Fix tool/test.sh with xvfb-run (#42) --- tool/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/test.sh b/tool/test.sh index 024a186f..8150278d 100755 --- a/tool/test.sh +++ b/tool/test.sh @@ -42,7 +42,7 @@ DEVICE_IDS=$(flutter devices --machine | grep '"sdk"') for DEVICE in linux android; do if echo "$DEVICE_IDS" | grep -i "$DEVICE" > /dev/null; then section "Running integration tests on $DEVICE" - flutter test integration_test/webcrypto_test.dart -d "$DEVICE" + xvfb-run flutter test integration_test/webcrypto_test.dart -d "$DEVICE" else section "Skipping integration tests on $DEVICE (missing device)" fi