aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/jest.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'vid-app-common/jest.config.js')
-rw-r--r--vid-app-common/jest.config.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/vid-app-common/jest.config.js b/vid-app-common/jest.config.js
new file mode 100644
index 000000000..e9ca59b11
--- /dev/null
+++ b/vid-app-common/jest.config.js
@@ -0,0 +1,16 @@
+module.exports = {
+ verbose: true,
+ roots: [
+ "<rootDir>/src/main/webapp/app"
+ ],
+ modulePaths: [
+ "<rootDir>/src/main/webapp/app/vid/external"
+ ],
+ setupFilesAfterEnv: ["<rootDir>/test-config.js"],
+ collectCoverage: true,
+ collectCoverageFrom: [
+ "src/**/*.js",
+ "!**/node_modules/**",
+ "!**/vendor/**"
+ ]
+}; \ No newline at end of file