diff options
Diffstat (limited to '')
-rw-r--r-- | js/src/tests/test262/harness/deepEqual-deep.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/js/src/tests/test262/harness/deepEqual-deep.js b/js/src/tests/test262/harness/deepEqual-deep.js new file mode 100644 index 0000000000..60d5cd59e4 --- /dev/null +++ b/js/src/tests/test262/harness/deepEqual-deep.js @@ -0,0 +1,15 @@ +// Copyright 2019 Ron Buckton. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: > + values compare correctly. +includes: [deepEqual.js] +---*/ + +assert.deepEqual({ a: { x: 1 }, b: [true] }, { a: { x: 1 }, b: [true] }); + +assert.throws(Test262Error, function () { assert.deepEqual({}, { a: { x: 1 }, b: [true] }); }); +assert.throws(Test262Error, function () { assert.deepEqual({ a: { x: 1 }, b: [true] }, { a: { x: 1 }, b: [false] }); }); + +reportCompare(0, 0); |