Upgrade to Node v16 for Github workflows.
[ustaxlib.git] / jest.config.js
1 // Copyright 2020 Blue Static <https://www.bluestatic.org>
2 // This program is free software licensed under the GNU General Public License,
3 // version 3.0. The full text of the license can be found in LICENSE.txt.
4 // SPDX-License-Identifier: GPL-3.0-only
5
6 module.exports = {
7 preset: 'ts-jest',
8 testEnvironment: 'node',
9 collectCoverage: true,
10 collectCoverageFrom: [
11 '**/*.ts',
12 '!dist/**/*',
13 '!examples/*',
14 ],
15 testPathIgnorePatterns: [
16 '/node_modules/',
17 '/dist/'
18 ]
19 };