mirror of https://github.com/aminya/setup-cpp
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
|
module.exports = {
|
||
|
preset: "ts-jest",
|
||
|
testEnvironment: "node",
|
||
|
testMatch: ["**/*.test.ts"],
|
||
|
// coverage
|
||
|
collectCoverageFrom: ["src/**/*.{ts,tsx}"],
|
||
|
coveragePathIgnorePatterns: ["assets", ".css.d.ts"],
|
||
|
verbose: true,
|
||
|
}
|