diff --git a/tests/ReactTests/index.ios.js b/tests/ReactTests/index.ios.js index 96beddf1..f24797f5 100644 --- a/tests/ReactTests/index.ios.js +++ b/tests/ReactTests/index.ios.js @@ -28,7 +28,6 @@ function runTests() { continue; } - console.log('-', testName); if (testSuite.beforeEach) { testSuite.beforeEach(); @@ -36,6 +35,11 @@ function runTests() { try { testSuite[testName](); + console.log('+ ' + testName); + } + catch (e) { + console.log('- ' + testName); + console.warn(e); } finally { if (testSuite.afterEach) {