Skip to content
This repository was archived by the owner on Mar 28, 2022. It is now read-only.

Commit f2159d7

Browse files
authored
Merge pull request #37 from mocks-server/release
Update dependencies
2 parents 08f6bc3 + 4bf7386 commit f2159d7

File tree

8 files changed

+2987
-2464
lines changed

8 files changed

+2987
-2464
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Fixed
1111
### Removed
1212

13+
## [2.0.1] - 2020-03-22
14+
### Changed
15+
- Update dependencies
16+
1317
## [2.0.0] - 2020-03-01
1418
### Changed
1519
- feat: [BREAKING CHANGE] Stop using @data-provider. (admin-api-client-data-provider package available for that purpose).

jest.config.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@ module.exports = {
2020
branches: 100,
2121
functions: 100,
2222
lines: 100,
23-
statements: 100
24-
}
23+
statements: 100,
24+
},
2525
},
2626

2727
// The glob patterns Jest uses to detect test files
2828
testMatch: [
2929
"<rootDir>/test/?(*.)+(spec|test).js?(x)",
30-
"<rootDir>/test/*/?(*.)+(spec|test).js?(x)"
30+
"<rootDir>/test/*/?(*.)+(spec|test).js?(x)",
3131
],
3232

3333
transform: {
34-
".js$": "babel-jest"
34+
".js$": "babel-jest",
3535
},
3636

3737
// The test environment that will be used for testing
3838
testEnvironment: "node",
3939

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

0 commit comments

Comments
 (0)