summaryrefslogtreecommitdiff
path: root/tests/type-consistency/generateAll.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/type-consistency/generateAll.ts')
-rw-r--r--tests/type-consistency/generateAll.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/type-consistency/generateAll.ts b/tests/type-consistency/generateAll.ts
new file mode 100644
index 0000000..15464ae
--- /dev/null
+++ b/tests/type-consistency/generateAll.ts
@@ -0,0 +1,5 @@
+import harnesses from "./spec/index";
+
+Promise.all(harnesses.map((harness) => harness.writeTests())).catch(
+ (e) => `Failed to generate tests: ${e}`
+);