diff --git a/packages/test-in-phantom/driver.js b/packages/test-in-phantom/driver.js index ec85c10a40..5d5fba764e 100644 --- a/packages/test-in-phantom/driver.js +++ b/packages/test-in-phantom/driver.js @@ -40,11 +40,13 @@ Meteor._runTestsEverywhere( console.log(name, ":", "EXPECTED FAILURE"); expected++; break; - default: + case "FAIL": failed++; console.log(name, ":", "!!!!!!!!! FAIL !!!!!!!!!!!"); console.log(JSON.stringify(resultSet[name].info)); break; + default: + console.log(name, ": unknown state for the test to be in"); } finished++; break;