cqm-models 4.1.1 → 4.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/jest.config.js ADDED
@@ -0,0 +1,16 @@
1
+ /*
2
+ * For a detailed explanation regarding each configuration property, visit:
3
+ * https://jestjs.io/docs/configuration
4
+ */
5
+
6
+ module.exports = {
7
+ name: 'jest',
8
+ testEnvironment: 'node',
9
+ verbose: true,
10
+ roots: ['<rootDir>/app/assets/', '<rootDir>/spec/javascript'],
11
+ testMatch: ['<rootDir>//spec/javascript/**/*.js'],
12
+ modulePathIgnorePatterns: ['<rootDir>/dist/'],
13
+ collectCoverageFrom: [
14
+ 'app/assets/**/*.js',
15
+ ],
16
+ };