2019-08-24 12:24:52 +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 correctly formats Symbols in error message.
|
|
|
|
includes: [compareArray.js]
|
|
|
|
features: [Symbol]
|
|
|
|
---*/
|
|
|
|
|
|
|
|
var threw = false;
|
|
|
|
|
|
|
|
try {
|
2021-10-01 18:52:15 +02:00
|
|
|
assert.compareArray([Symbol()], [Symbol('desc')]);
|
2019-08-24 12:24:52 +02:00
|
|
|
} catch (err) {
|
|
|
|
threw = true;
|
|
|
|
|
|
|
|
assert.sameValue(err.constructor, Test262Error);
|
|
|
|
assert(err.message.indexOf('[Symbol()]') !== -1);
|
|
|
|
assert(err.message.indexOf('[Symbol(desc)]') !== -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(threw);
|