Sort arrays test arrays and compare.

This commit is contained in:
Brendan Dahl 2015-05-11 10:22:45 -07:00
Родитель d66b389aae
Коммит 786396cbaf
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -262,11 +262,12 @@ casper.test.begin("unit tests", 26 + gfxTests.length, function(test) {
"I 16: Main isolate still running",
"I DONE",
""];
output = output.split("\n");
output = output.split("\n").sort();
expectedOutput.sort();
test.assert(expectedOutput.length === output.length, "Same number of lines output.");
var allMatch = true;
for (var i = 0; i < output.length; i++) {
if (expectedOutput.indexOf(output[i]) === -1) {
for (var i = 0; i < expectedOutput.length; i++) {
if (expectedOutput[i] !== output[i]) {
allMatch = false;
break;
}