Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Raice Hannay committed May 12, 2021
1 parent 746086d commit 7de1688
Show file tree
Hide file tree
Showing 3 changed files with 2,025 additions and 1,818 deletions.
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Raice Hannay <[email protected]>",
"description": "A set of useful mocks and helpers for the Jest unit testing framework.",
"license": "ISC",
"version": "1.0.4",
"version": "1.0.5",
"keywords": [
"jest",
"mock",
Expand Down Expand Up @@ -41,21 +41,21 @@
"homepage": "https://github.com/voodoocreation/jest-mocks#readme",
"types": "dist/index.d.ts",
"peerDependencies": {
"jest": ">= 24.9.0"
"jest": ">= 26.6.3"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-voodoocreation": "^1.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prefer-arrow": "^1.1.7",
"jest": "^25.2.4",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-config-voodoocreation": "^2.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}
4 changes: 2 additions & 2 deletions src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
mockWithRejectedPromise,
mockWithResolvedPromise,
rejectedPromise,
resolvedPromise
resolvedPromise,
} from "./index";

describe("Jest mocks", () => {
Expand All @@ -18,7 +18,7 @@ describe("Jest mocks", () => {

expect(filterCalls(mockFunction, "Other call")).toEqual([
["Other call"],
["Other call"]
["Other call"],
]);
});
});
Expand Down
Loading

0 comments on commit 7de1688

Please sign in to comment.