Skip to content

Commit

Permalink
fixed octokit imports
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgamero authored Nov 6, 2024
1 parent 62d726f commit c0fe16a
Show file tree
Hide file tree
Showing 4 changed files with 5,011 additions and 3,036 deletions.
13 changes: 11 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
"\\.[jt]sx?$": "babel-jest",
},
transformIgnorePatterns: [
'node_modules/(?!' +
[
'@octokit',
'universal-user-agent',
'before-after-hook',
'minimist'
].join('|') +
')',
],
verbose: true,
testTimeout: 9000
}
Loading

0 comments on commit c0fe16a

Please sign in to comment.