UNPKG

1.09 kBJavaScriptView Raw
1/*
2Copyright 2019 Adobe. All rights reserved.
3This file is licensed to you under the Apache License, Version 2.0 (the "License");
4you may not use this file except in compliance with the License. You may obtain a copy
5of the License at http://www.apache.org/licenses/LICENSE-2.0
6
7Unless required by applicable law or agreed to in writing, software distributed under
8the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9OF ANY KIND, either express or implied. See the License for the specific language
10governing permissions and limitations under the License.
11*/
12
13module.exports = {
14 testEnvironment: 'node',
15 verbose: true,
16 setupFilesAfterEnv: ['./test/jest.setup.js'],
17 collectCoverage: true,
18 collectCoverageFrom: [
19 'lib/**/*.js',
20 'generators/**/*.js',
21 '!generators/**/templates/**/*.js',
22 '!generators/**/common-templates/**/*.js'
23 ],
24 testPathIgnorePatterns: [
25 '<rootDir>/generators/',
26 '<rootDir>/playground/'
27 ],
28 coverageThreshold: {
29 global: {
30 branches: 100,
31 lines: 100,
32 statements: 100
33 }
34 }
35}