Finish writing the schema tests

This commit is contained in:
Oliver-Akins 2025-06-01 11:24:20 -06:00
parent 946a44edae
commit c26b4318ee
3 changed files with 143 additions and 0 deletions

View file

@ -1,9 +1,13 @@
import { barGraphTests } from "./schemas/barGraph.mjs";
import { numberBucketTests } from "./schemas/numberBucket.mjs";
import { rowTests } from "./schemas/row.mjs";
import { stringBucketTests } from "./schemas/stringBucket.mjs";
import { tableTests } from "./schemas/table.mjs";
Hooks.on(`quenchReady`, (quench) => {
numberBucketTests(quench);
stringBucketTests(quench);
barGraphTests(quench);
tableTests(quench);
rowTests(quench);
});