summaryrefslogtreecommitdiff
path: root/tests/type-consistency/generateAll.ts
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2025-11-08 14:54:21 -0800
committerKai Stevenson <kai@kaistevenson.com>2025-11-08 15:16:48 -0800
commitb32604eef0cec59798cdfea53b82766819429717 (patch)
tree7267340193ee2cdce306e4e7a9672f96fb0c16e7 /tests/type-consistency/generateAll.ts
parent0a046893eaffc0d9ef762eb56b48f01bbd79846f (diff)
test generator harnesskai/test-generator
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}`
+);