UNPKG

2.41 kBJavaScriptView Raw
1/*
2 * MIT License
3 *
4 * Copyright (c) 2019 nest-mods
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
25/*
26 * Created by Diluka on 2019-02-18.
27 *
28 *
29 * ----------- 神 兽 佑 我 -----------
30 * ┏┓ ┏┓+ +
31 * ┏┛┻━━━━━━┛┻┓ + +
32 * ┃ ┃
33 * ┣ ━ ┃ ++ + + +
34 * ████━████ ┃+
35 * ┃ ┃ +
36 * ┃ ┴ ┃
37 * ┃ ┃ + +
38 * ┗━┓ ┏━┛ Code is far away from bug
39 * ┃ ┃ with the animal protecting
40 * ┃ ┃ + + + +
41 * ┃ ┃
42 * ┃ ┃ +
43 * ┃ ┃ + +
44 * ┃ ┃ +
45 * ┃ ┗━━━┓ + +
46 * ┃ ┣┓
47 * ┃ ┏┛
48 * ┗┓┓┏━━━━┳┓┏┛ + + + +
49 * ┃┫┫ ┃┫┫
50 * ┗┻┛ ┗┻┛+ + + +
51 * ----------- 永 无 BUG ------------
52 */
53module.exports = {
54 moduleFileExtensions: [
55 'js',
56 'json',
57 'ts',
58 ],
59 roots: ['<rootDir>/src', '<rootDir>/test'],
60 testRegex: '\\.(e2e-)?spec\\.ts$',
61 transform: {
62 '^.+\\.(t|j)s$': 'ts-jest',
63 },
64 coverageDirectory: '../coverage',
65 testEnvironment: 'node',
66 forceExit: true,
67};
68
69process.env.DEBUG = '*:DemoService:*';
70process.env.DEBUG_LEVEL = 'trace';