Skip to content

Commit

Permalink
Deps: Replace jest-extended with @overlookmotel/jest-extended
Browse files Browse the repository at this point in the history
Includes jest-community/jest-extended#545 which speeds up tests.
  • Loading branch information
overlookmotel committed Dec 27, 2022
1 parent 6929026 commit c908f5c
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 35 deletions.
2 changes: 1 addition & 1 deletion jest.config.js
Expand Up @@ -13,7 +13,7 @@ module.exports = {
coverageProvider: 'v8',
collectCoverageFrom: ['*.js', '!.eslintrc.js', '!jest.config.js', 'lib/**/*.js'],
setupFilesAfterEnv: [
'jest-extended/all',
'@overlookmotel/jest-extended/all',
'jest-expect-arguments',
'<rootDir>/test/support/expect.js'
],
Expand Down
64 changes: 32 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -66,11 +66,11 @@
"@overlookmotel/eslint-config": "^10.1.0",
"@overlookmotel/eslint-config-jest": "^6.0.1",
"@overlookmotel/eslint-config-node": "^4.1.0",
"@overlookmotel/jest-extended": "^3.2.0",
"eslint": "^8.30.0",
"expect": "^29.3.1",
"jest": "^29.3.1",
"jest-expect-arguments": "^1.0.0",
"jest-extended": "^3.2.0",
"jest-matcher-utils": "^29.3.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5"
Expand Down
2 changes: 1 addition & 1 deletion test/splitAsync.mocha.test.js
Expand Up @@ -22,7 +22,7 @@ const NUM_FIXTURES = 5;

// Init
global.expect = expect;
require('jest-extended/all');
require('@overlookmotel/jest-extended/all');
require('./support/expect.js');

// Create fixtures
Expand Down

0 comments on commit c908f5c

Please sign in to comment.