Add a few tests

This commit is contained in:
Andras Schmelczer 2025-01-03 11:35:00 +00:00
parent 5178cb6381
commit d9c2c5b2a1
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
7 changed files with 3462 additions and 3 deletions

8
plugin/jest.config.js Normal file
View file

@ -0,0 +1,8 @@
module.exports = {
testEnvironment: "node",
moduleFileExtensions: ["ts"],
testMatch: ["**/src/**/*.test.ts"],
transform: {
"^.+\\.(ts|tsx)$": "ts-jest",
},
};