aboutsummaryrefslogtreecommitdiffstats
path: root/jest.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'jest.config.js')
-rw-r--r--jest.config.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/jest.config.js b/jest.config.js
index f95ef1c39c..6937a52fc1 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -1,10 +1,9 @@
export default {
+ rootDir: 'web_src',
setupFilesAfterEnv: ['jest-extended'],
+ testEnvironment: 'jsdom',
+ testMatch: ['<rootDir>/**/*.test.js'],
testTimeout: 20000,
- rootDir: 'web_src',
- testMatch: [
- '<rootDir>/**/*.test.js',
- ],
transform: {},
verbose: false,
};