Skip to content

Commit

Permalink
Convert to single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
iwatakeshi committed Mar 16, 2020
1 parent 8c8eb6d commit f380bea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module.exports = {
roots: ["<rootDir>/src"],
roots: ['<rootDir>/src'],
testMatch: [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
'**/__tests__/**/*.+(ts|tsx|js)',
'**/?(*.)+(spec|test).+(ts|tsx|js)',
],
transform: {
"^.+\\.(ts|tsx)?$": "ts-jest"
'^.+\\.(ts|tsx)?$': 'ts-jest',
},
collectCoverage: true,
testEnvironment: "node"
};
testEnvironment: 'node',
}

0 comments on commit f380bea

Please sign in to comment.