Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kamataryo committed Aug 25, 2023
1 parent 201f854 commit 51a1107
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export default {
"roots": [
"<rootDir>/src"
module.exports = {
'roots': [
'<rootDir>/src',
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
'testMatch': [
'**/__tests__/**/*.+(ts|tsx|js)',
'**/?(*.)+(spec|test).+(ts|tsx|js)',
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
'transform': {
'^.+\\.(ts|tsx)$': 'ts-jest',
},
}
};

0 comments on commit 51a1107

Please sign in to comment.