Finish writing the schema tests
This commit is contained in:
parent
946a44edae
commit
c26b4318ee
3 changed files with 143 additions and 0 deletions
|
|
@ -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);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue