Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Mar 29, 2024
1 parent 8fe6883 commit 4e1fc51
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 99 deletions.
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,35 +33,35 @@
"sync-labels": "github-label-sync --labels .github/labels.json japa/assert"
},
"devDependencies": {
"@adonisjs/eslint-config": "^1.2.0",
"@adonisjs/prettier-config": "^1.2.0",
"@adonisjs/tsconfig": "^1.2.0",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@japa/errors-printer": "^3.0.2",
"@japa/runner": "^3.1.1",
"@swc/core": "^1.3.100",
"@types/luxon": "^3.3.7",
"@types/node": "^20.10.4",
"c8": "^8.0.1",
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/prettier-config": "^1.3.0",
"@adonisjs/tsconfig": "^1.3.0",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@japa/errors-printer": "^3.0.3",
"@japa/runner": "^3.1.2",
"@swc/core": "^1.4.11",
"@types/luxon": "^3.4.2",
"@types/node": "^20.11.30",
"c8": "^9.1.0",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"eslint": "^8.57.0",
"github-label-sync": "^2.3.1",
"glob": "^10.3.10",
"husky": "^8.0.3",
"glob": "^10.3.12",
"husky": "^9.0.11",
"luxon": "^3.4.4",
"np": "^9.2.0",
"prettier": "^3.1.1",
"np": "^10.0.2",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"dependencies": {
"@poppinss/macroable": "^1.0.1",
"@types/chai": "^4.3.11",
"@poppinss/macroable": "^1.0.2",
"@types/chai": "^4.3.14",
"api-contract-validator": "^2.2.8",
"chai": "^4.3.10"
"chai": "^5.1.0"
},
"peerDependencies": {
"@japa/runner": "^3.0.0"
Expand Down
3 changes: 1 addition & 2 deletions src/assert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1360,8 +1360,7 @@ export class Assert extends Macroable implements AssertContract {
...args: Parameters<ChaiAssert['sameDeepMembers']>
): ReturnType<ChaiAssert['sameDeepMembers']> {
this.incrementAssertionsCount()
// @ts-expect-error not in @types/chai
return assert['notSameDeepMembers'](...args)
return assert.notSameDeepMembers(...args)
}

/**
Expand Down
Loading

0 comments on commit 4e1fc51

Please sign in to comment.