Skip to content

Commit 6dbd713

Browse files
authored
chore(deps): Update dependencies 22.07.2022 (#42)
* chore(deps): Update dependencies 22.07.2022 * Recreate lock file
1 parent f57bc21 commit 6dbd713

File tree

8 files changed

+1383
-1158
lines changed

8 files changed

+1383
-1158
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
17.4.0
1+
18.6.0

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 259 additions & 81 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-3.1.1.cjs

Lines changed: 0 additions & 768 deletions
This file was deleted.

.yarn/releases/yarn-3.2.2.cjs

Lines changed: 783 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ plugins:
44
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
55
spec: "@yarnpkg/plugin-interactive-tools"
66

7-
yarnPath: .yarn/releases/yarn-3.1.1.cjs
7+
yarnPath: .yarn/releases/yarn-3.2.2.cjs

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@
2121
"@cometlib/dedent": "^0.8.0-es.10"
2222
},
2323
"devDependencies": {
24-
"@types/mocha": "^9.1.0",
25-
"@types/node": "^17.0.15",
26-
"@types/sinon": "^10.0.11",
24+
"@types/mocha": "^9.1.1",
25+
"@types/node": "^18.0.6",
26+
"@types/sinon": "^10.0.13",
2727
"all-contributors-cli": "^6.20.0",
2828
"cross-env": "^7.0.3",
29-
"mocha": "^9.2.0",
30-
"sinon": "^13.0.1",
31-
"ts-node": "^10.5.0",
29+
"mocha": "^10.0.0",
30+
"sinon": "^14.0.0",
31+
"ts-node": "^10.9.1",
3232
"tslint": "^6.1.3",
33-
"typescript": "^4.5.5"
33+
"typescript": "^4.7.4"
3434
},
35-
"packageManager": "yarn@3.1.1"
35+
"packageManager": "yarn@3.2.2"
3636
}

src/lib/ObjectAssertion.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ export class ObjectAssertion<T extends JSObject> extends Assertion<T> {
4646
public toContainKey(key: keyof T): this {
4747
const error = new AssertionError({
4848
actual: this.actual,
49-
message: `Expected the object to contain the provided key <${key}>`
49+
message: `Expected the object to contain the provided key <${String(key)}>`
5050
});
5151

5252
const invertedError = new AssertionError({
5353
actual: this.actual,
54-
message: `Expected the object NOT to contain the provided key <${key}>`
54+
message: `Expected the object NOT to contain the provided key <${String(key)}>`
5555
});
5656
return this.execute({
5757
assertWhen: this.actual.hasOwnProperty(key),

0 commit comments

Comments
 (0)