blob: 440dca3756ff0426461352261f88229674bad292 [file] [log] [blame]
// 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]);
});