Browse Source

Meta: Use `QT_QPA_PLATFORM` offscreen in `WPT.sh`

This has better compatibility with MacOS.
Tim Ledbetter 11 months ago
parent
commit
a859b3610d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Meta/WPT.sh

+ 1 - 1
Meta/WPT.sh

@@ -121,7 +121,7 @@ execute_wpt() {
             fi
             WPT_ARGS+=( "--webdriver-arg=--certificate=${certificate_path}" )
         done
-        QT_QPA_PLATFORM="minimal" ./wpt run "${WPT_ARGS[@]}" ladybird "${TEST_LIST[@]}"
+        QT_QPA_PLATFORM="offscreen" ./wpt run "${WPT_ARGS[@]}" ladybird "${TEST_LIST[@]}"
     popd > /dev/null
 }