Skip to content

Commit

Permalink
Attempt to fix tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
surilindur committed Mar 24, 2024
1 parent 12f623c commit 484482b
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
/** @type {import('jest').Config} */
module.exports = {
collectCoverage: true,
transform: {
'^.+\\.ts$': 'ts-jest',
'.+\\.ts': 'ts-jest',
},
transformIgnorePatterns: [
'^.+\\.js',
],
testRegex: '^.+-test\\.ts$',
moduleFileExtensions: [
'js',
'ts',
],
collectCoverage: true,
testRegex: [ 'test/?(.+)+(spec|test).[tj]s' ],
testEnvironment: 'node',
moduleFileExtensions: [ 'js', 'ts' ],
};

0 comments on commit 484482b

Please sign in to comment.