From 928dfbf3b4114be6c17c3a0b35b6934b9b898243 Mon Sep 17 00:00:00 2001 From: Lukas Date: Thu, 7 Nov 2024 16:42:54 +0100 Subject: [PATCH] fix: add jest config --- jest.config.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 jest.config.js diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..5fcd038 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,7 @@ +module.exports = { + coverageThreshold: { + global: { + lines: 80, + }, + }, +};