Skip to content
This repository has been archived by the owner on May 27, 2022. It is now read-only.

Commit

Permalink
style(lint): Fix jest.config style
Browse files Browse the repository at this point in the history
  • Loading branch information
javierbrea committed Jun 21, 2020
1 parent 097d1dd commit a7249d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ module.exports = {
branches: 100,
functions: 100,
lines: 100,
statements: 100
}
statements: 100,
},
},

// The test environment that will be used for testing
Expand All @@ -31,8 +31,8 @@ module.exports = {
testMatch: ["**/test/**/?(*.)+(spec|test).js?(x)"],

transform: {
".js$": "babel-jest"
".js$": "babel-jest",
},

setupFiles: ["<rootDir>/jest.init.js"]
setupFiles: ["<rootDir>/jest.init.js"],
};

0 comments on commit a7249d4

Please sign in to comment.