Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Apr 1, 2020
1 parent efd5a49 commit aee1f93
Show file tree
Hide file tree
Showing 3 changed files with 1,977 additions and 1,979 deletions.
17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,30 +26,29 @@
},
"dependencies": {
"ansi-escapes": "^4.2.1",
"chalk": "^2.4.1",
"jest-regex-util": "^24.9.0",
"jest-watcher": "^24.3.0",
"chalk": "^3.0.0",
"jest-regex-util": "^25.2.1",
"jest-watcher": "^25.2.4",
"slash": "^3.0.0",
"string-length": "^3.1.0",
"strip-ansi": "^5.0.0"
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.3.0",
"babel-jest": "^25.2.4",
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.0.1",
"flow-bin": "^0.105.2",
"jest": "^24.3.0",
"flow-bin": "^0.121.0",
"jest": "^25.2.4",
"prettier": "^1.13.7",
"rimraf": "^3.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/lib/__tests__/utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { trimAndFormatPath, formatTestNameByPattern } from '../utils';

jest.mock('chalk', () => {
const chalk = jest.requireActual('chalk');
return new chalk.constructor({ enabled: true, level: 1 });
return new chalk.Instance({ enabled: true, level: 1 });
});

describe('trimAndFormatPath', () => {
Expand Down

0 comments on commit aee1f93

Please sign in to comment.