Add tests for declaform.

This commit is contained in:
Austin Smith
2025-10-19 11:06:46 -04:00
parent ed00ede04f
commit a3c34de3d2
6 changed files with 4944 additions and 8 deletions

11
jest.config.js Normal file
View File

@@ -0,0 +1,11 @@
const { createDefaultPreset } = require("ts-jest");
const tsJestTransformCfg = createDefaultPreset().transform;
/** @type {import("jest").Config} **/
module.exports = {
testEnvironment: "jsdom",
transform: {
...tsJestTransformCfg,
},
};