summaryrefslogtreecommitdiffstats
path: root/util/wasm/wasmtestrunner/README.md
diff options
context:
space:
mode:
authorDavid Skoland <david.skoland@qt.io>2022-03-17 17:28:41 +0100
committerDavid Skoland <david.skoland@qt.io>2022-03-31 16:50:25 +0200
commitb01ee1d44c17038f72e746248af3a9d6492723d9 (patch)
treeacd03c8d834542ec9154bdd6f28466548873aa02 /util/wasm/wasmtestrunner/README.md
parentc168edba219a0f5167f83ed2e4e2f4de5607d9e4 (diff)
Add WASM testrunner
Add a python script that allows us to run wasm tests in CI, along with the necessary cmake logic to install the script and execute tests accordingly. Change-Id: I93b95c115538c4e27b2b833405acab8162be2a8a Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
Diffstat (limited to 'util/wasm/wasmtestrunner/README.md')
-rw-r--r--util/wasm/wasmtestrunner/README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/util/wasm/wasmtestrunner/README.md b/util/wasm/wasmtestrunner/README.md
new file mode 100644
index 0000000000..0beb3f0c12
--- /dev/null
+++ b/util/wasm/wasmtestrunner/README.md
@@ -0,0 +1,10 @@
+# qtwasmtestrunner
+This is a utility that launches a small webserver and\
+either a browser or a webdriver (only chrome/chromedriver at the time of writing)\
+This allows running wasm tests and printing the output to stdout like a normal test.
+
+chromedriver must be installed: https://chromedriver.chromium.org/ \
+to use it with chromedriver (default operation), and it must be in PATH\
+unless --chromedriver_path is passed with full path to chromedriver
+
+Run the script with --help for more info.