-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjest.config.js
55 lines (52 loc) · 2.27 KB
/
jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* Project: @resnovas/smartcloud
* File: jest.config.js
* Path: \jest.config.js
* Created Date: Monday, September 5th 2022
* Author: Jonathan Stevens (Email: [email protected], Github: https://github.com/TGTGamer)
* -----
* Contributing: Please read through our contributing guidelines. Included are directions for opening
* issues, coding standards, and notes on development. These can be found at https://github.com/resnovas/smartcloud/CONTRIBUTING.md
*
* Code of Conduct: This project abides by the Contributor Covenant, version 2.0. Please interact in ways that contribute to an open,
* welcoming, diverse, inclusive, and healthy community. Our Code of Conduct can be found at https://github.com/resnovas/smartcloud/CODE_OF_CONDUCT.md
* -----
* Copyright (c) 2022 Resnovas - All Rights Reserved
* LICENSE: GNU General Public License v3.0 or later (GPL-3.0+)
* -----
* This program has been provided under confidence of the copyright holder and is
* licensed for copying, distribution and modification under the terms of
* the GNU General Public License v3.0 or later (GPL-3.0+) published as the License,
* or (at your option) any later version of this license.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License v3.0 or later for more details.
*
* You should have received a copy of the GNU General Public License v3.0 or later
* along with this program. If not, please write to: [email protected],
* or see https://www.gnu.org/licenses/gpl-3.0-standalone.html
*
* DELETING THIS NOTICE AUTOMATICALLY VOIDS YOUR LICENSE - PLEASE SEE THE LICENSE FILE FOR DETAILS
* -----
* Last Modified: 21-10-2022
* By: Jonathan Stevens (Email: [email protected], Github: https://github.com/TGTGamer)
* Current Version: 1.0.0-beta.0
* HISTORY:
* Date By Comments
* ---------- --- ---------------------------------------------------------
*/
/** @format */
const config = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest',
},
verbose: true,
};
export default config;