Skip to content

Commit

Permalink
Update @types/jasmine to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
coyoteecd committed Jun 3, 2022
1 parent 18d402c commit 68ef25d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
28 changes: 14 additions & 14 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
},
"homepage": "https://github.com/coyoteecd/serverless-child-stack-manager#readme",
"devDependencies": {
"@types/jasmine": "^3.10.6",
"@types/node": "^14.18.20",
"@types/jasmine": "^4.0.3",
"@types/node": "^16.11.38",
"@types/serverless": "^3.12.7",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
Expand Down
2 changes: 1 addition & 1 deletion test/matchers/custom-matchers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
function notMatching<T>(matcher: jasmine.AsymmetricMatcher<T>): jasmine.Expected<T> {
return {
asymmetricMatch: (compareTo: T, util: ReadonlyArray<jasmine.CustomEqualityTester>): boolean => !matcher.asymmetricMatch(compareTo, util)
asymmetricMatch: (compareTo: T, util: jasmine.MatchersUtil): boolean => !matcher.asymmetricMatch(compareTo, util)
};
}

Expand Down

0 comments on commit 68ef25d

Please sign in to comment.