From f8a5a4ffd6a50ff2e1ad98af6ea21606d5143f02 Mon Sep 17 00:00:00 2001 From: avernikoz Date: Mon, 12 Feb 2024 21:10:19 +0300 Subject: [PATCH] add jest config --- jest.config.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 jest.config.js diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..3abcbd9 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,5 @@ +/** @type {import('ts-jest').JestConfigWithTsJest} */ +module.exports = { + preset: "ts-jest", + testEnvironment: "node", +};