mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 22:31:35 +00:00

PR-URL: https://github.com/nodejs/node/pull/46371 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com>
20 lines
389 B
JavaScript
20 lines
389 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert').strict;
|
|
|
|
process.env.NODE_DISABLE_COLORS = true;
|
|
|
|
assert.throws(
|
|
() => {
|
|
assert.deepStrictEqual({}, { foo: 'bar' });
|
|
},
|
|
{
|
|
message: 'Expected values to be strictly deep-equal:\n' +
|
|
'+ actual - expected\n' +
|
|
'\n' +
|
|
'+ {}\n' +
|
|
'- {\n' +
|
|
'- foo: \'bar\'\n' +
|
|
'- }',
|
|
});
|