test262/test/harness/compare-array-samevalue.js

14 lines
348 B
JavaScript
Raw Normal View History

2019-08-24 12:24:33 +02:00
// Copyright (C) 2019 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
compareArray uses SameValue for value comparison.
includes: [compareArray.js]
---*/
assert.compareArray([NaN], [NaN]);
assert.throws(Test262Error, () => {
assert.compareArray([0], [-0]);
});