test262/test/harness/assert-samevalue-objects.js

26 lines
565 B
JavaScript
Raw Permalink Normal View History

2015-04-21 21:22:35 +02:00
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Distinct objects do not satisfy the assertion.
---*/
var threw = false;
try {
assert.sameValue({}, {});
} catch(err) {
threw = true;
if (err.constructor !== Test262Error) {
throw new Error(
2015-04-21 21:22:35 +02:00
'Expected a Test262Error, but a "' + err.constructor.name +
'" was thrown.'
);
}
}
if (threw === false) {
throw new Error('Expected a Test262Error, but no error was thrown.');
2015-04-21 21:22:35 +02:00
}