AsSerTionError [Err_assertion]: Erwartete Werte, die lose tief sind:
// Requiring the module
const assert = require('assert').strict;
// Function call
try {
assert.deepEqual({ a: '5' }, { a: '11' });
} catch(error) {
console.log("Error: ", error)
}
Moscode