Rename files to better indicate that they're tests

This commit is contained in:
Oliver-Akins 2025-06-12 19:27:20 -06:00
parent e4f37d56a6
commit a72c33b901
6 changed files with 5 additions and 5 deletions

View file

@ -1,8 +1,8 @@
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";
import { barGraphTests } from "./schemas/barGraph.test.mjs";
import { numberBucketTests } from "./schemas/numberBucket.test.mjs";
import { rowTests } from "./schemas/row.test.mjs";
import { stringBucketTests } from "./schemas/stringBucket.test.mjs";
import { tableTests } from "./schemas/table.test.mjs";
Hooks.on(`quenchReady`, (quench) => {
numberBucketTests(quench);