We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea0d6f1 commit 35aa907Copy full SHA for 35aa907
IntegrationTests/Makefile
@@ -30,8 +30,13 @@ run_benchmark:
30
.PHONY: benchmark
31
benchmark: benchmark_setup run_benchmark
32
33
-.PHONY: test
34
-test: build_rt dist/PrimaryTests.wasm
+.PHONY: primary_test
+primary_test: build_rt dist/PrimaryTests.wasm
35
node bin/primary-tests.js
36
+
37
+.PHONY: concurrency_test
38
concurrency_test: build_rt dist/ConcurrencyTests.wasm
39
node bin/concurrency-tests.js
40
41
+.PHONY: test
42
+test: concurrency_test primary_test
0 commit comments