Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2023-07-13 09:09:17 +00:00
parent 4fad06f438
commit 40a500c743
4168 changed files with 298222 additions and 374905 deletions

View file

@ -60,6 +60,13 @@ function createMatcher(expectation, message) {
m.message = `match(${valueToString(expectation)})`;
}
// ensure that nothing mutates the exported message value, ref https://github.com/sinonjs/sinon/issues/2502
Object.defineProperty(m, "message", {
configurable: false,
writable: false,
value: m.message,
});
return m;
}

View file

@ -1,6 +1,6 @@
{
"name": "@sinonjs/samsam",
"version": "7.0.1",
"version": "8.0.0",
"description": "Value identification and comparison functions",
"homepage": "http://sinonjs.github.io/samsam/",
"author": "Christian Johansen",