Implemented Jest tests

This commit is contained in:
Florian Sylvain
2023-01-27 12:21:41 +01:00
parent 8ec166e88e
commit 766b9ee9fb
9 changed files with 804 additions and 293 deletions
+9
View File
@@ -0,0 +1,9 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
const jestConfig = {
transform: { '\\.[jt]s?$': 'ts-jest' },
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.[jt]s$': '$1',
}
}
export default jestConfig