Index: trunk/extensions/VisualEditor/tests/parser/parserTests.js |
— | — | @@ -12,6 +12,7 @@ |
13 | 13 | |
14 | 14 | (function() { |
15 | 15 | //"use strict"; |
| 16 | +console.log( "Starting up JS parser tests" ); |
16 | 17 | |
17 | 18 | var fs = require('fs'), |
18 | 19 | path = require('path'), |
— | — | @@ -97,8 +98,10 @@ |
98 | 99 | } |
99 | 100 | } |
100 | 101 | |
| 102 | +console.log( "Parsing tests case from file, this takes a few seconds ..." ); |
101 | 103 | try { |
102 | 104 | var cases = testParser.parse(testFile); |
| 105 | + console.log( "Done parsing." ); |
103 | 106 | } catch (e) { |
104 | 107 | console.log(e); |
105 | 108 | } |
— | — | @@ -297,6 +300,7 @@ |
298 | 301 | |
299 | 302 | var comments = []; |
300 | 303 | |
| 304 | +console.log( "Initialisation complete. Now launching tests." ); |
301 | 305 | cases.forEach(function(item) { |
302 | 306 | if (typeof item == 'object') { |
303 | 307 | switch(item.type) { |