1 | global.should = null;
|
2 | global.should = require('should');
|
3 |
|
4 | var util = require('util');
|
5 | global.dump = function () {
|
6 | for (var i = 0; i < arguments.length; i++) {
|
7 | console.error(util.inspect(arguments[i], false, null, true));
|
8 | }
|
9 | }; |
\ | No newline at end of file |