We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d9f1f5 commit 7aa924aCopy full SHA for 7aa924a
CONTRIBUTING.md
@@ -2,16 +2,15 @@
2
3
## Prepare your development environment
4
5
-Just follow `.devcontainer/Dockerfile` to see what's needed.<br?>
+Just follow `.devcontainer/Dockerfile` to see what's needed.<br>
6
Basically it's just `nodejs` >= v18 `tsc` and `npm`. <br>
7
Qt5, cmake and ninja if you want to run the tests.
8
9
10
## Running tests
11
12
```bash
13
-tsc
14
-node out/test.js
+sh test.sh
15
```
16
17
Or simply let GitHub actions run the tests for you.<br>
test.sh
@@ -0,0 +1,3 @@
1
+cmake --preset=dev -S test/qt_test && \
+cmake --build test/qt_test/build-dev && \
+tsc && node out/test.js
0 commit comments