We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef5e696 commit ab4abf9Copy full SHA for ab4abf9
2 files changed
.github/workflows/test.yml
@@ -78,9 +78,6 @@ jobs:
78
- name: Install Dependencies
79
run: pnpm install --frozen-lockfile
80
81
- - name: Build
82
- run: pnpm build
83
-
84
- name: Run Tests
85
run: pnpm test:coverage
86
jest.config.js
@@ -1,5 +1,7 @@
1
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
2
module.exports = {
3
+ collectCoverageFrom: ['src/**/*.ts', '!src/**/*.d.ts'],
4
+ coveragePathIgnorePatterns: ['/node_modules/', '/lib/'],
5
preset: 'ts-jest',
6
testEnvironment: 'node',
7
};
0 commit comments