Review comments: Don't log gfx test names

This commit is contained in:
Tim Abraldes 2015-03-09 15:40:11 -07:00
Родитель 21c67a3e14
Коммит 7499a637df
1 изменённых файлов: 0 добавлений и 2 удалений

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

@ -265,7 +265,6 @@ casper.test.begin("unit tests", 20 + gfxTests.length, function(test) {
// Graphics tests
gfxTests.forEach(function(testCase) {
console.log("Running " + testCase.name);
casper
.thenOpen("http://localhost:8000/index.html?fontSize=12&midletClassName=" + testCase.name + "&jars=tests/tests.jar&logConsole=web,page&logLevel=log")
.withFrame(0, function() {
@ -355,7 +354,6 @@ casper.test.begin("unit tests", 20 + gfxTests.length, function(test) {
} else if (todo) {
test.skip(1, testCase.name + " - Todo");
} else {
console.log("Completed " + testCase.name);
test.pass(testCase.name + " - Pass");
}