aboutsummaryrefslogtreecommitdiffstats
path: root/jest.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'jest.config.js')
-rw-r--r--jest.config.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/jest.config.js b/jest.config.js
index 55e3e29..1924169 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -4,5 +4,11 @@
4module.exports = { 4module.exports = {
5 preset: 'ts-jest', 5 preset: 'ts-jest',
6 resetMocks: true, 6 resetMocks: true,
7 restoreMocks: true,
7 testEnvironment: 'node', 8 testEnvironment: 'node',
9 testPathIgnorePatterns: [
10 '/dist/',
11 '/dist-types',
12 '/node_modules/',
13 ],
8}; 14};