Begin writing tests
This commit is contained in:
parent
d49998801f
commit
22036c419d
6 changed files with 172 additions and 0 deletions
9
module/__tests__/registration.mjs
Normal file
9
module/__tests__/registration.mjs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { barGraphTests } from "./schemas/barGraph.mjs";
|
||||
import { numberBucketTests } from "./schemas/numberBucket.mjs";
|
||||
import { stringBucketTests } from "./schemas/stringBucket.mjs";
|
||||
|
||||
Hooks.on(`quenchReady`, (quench) => {
|
||||
numberBucketTests(quench);
|
||||
stringBucketTests(quench);
|
||||
barGraphTests(quench);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue