mirror of https://github.com/tc39/test262.git
Create an assert.compareArray
This is a convenience function which tries to make tests easier to read and write.
This commit is contained in:
parent
bfc9020d51
commit
8cb7f59395
|
@ -13,3 +13,17 @@ function compareArray(a, b) {
|
|||
return true;
|
||||
}
|
||||
|
||||
assert.compareArray = function(actual, expected, message) {
|
||||
if (compareArray(actual, expected)) return;
|
||||
|
||||
|
||||
if (message === undefined) {
|
||||
message = '';
|
||||
} else {
|
||||
message += ' ';
|
||||
}
|
||||
|
||||
message += 'Expected SameValue(«' + String(actual) + '», «' + String(expected) + '») to be true';
|
||||
|
||||
$ERROR(`${message}${message === undefined ? '' : ' '}Expected the arrays [${actual}] to have the same contents as [${expected}]`);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue