test: added jest config file

This commit is contained in:
Ritesh Ghosh
2023-08-07 20:36:42 +05:30
parent e24ae502fa
commit 01c93fc1af
+7
View File
@@ -0,0 +1,7 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: "ts-jest",
testTimeout: 100000,
testEnvironment: "node",
testMatch: ["**/test/**/*.test.ts"],
};