switched tests to qunit
This commit is contained in:
parent
b3aff50d6a
commit
c78bc6cef5
8 changed files with 2568 additions and 3 deletions
24
lib/tests/unit/logger.js
Normal file
24
lib/tests/unit/logger.js
Normal file
|
@ -0,0 +1,24 @@
|
|||
/* jshint strict: false */
|
||||
/* global console: false, QUnit: false */
|
||||
|
||||
// Logging setup for phantom integration
|
||||
// Taken from Twitter Bootstrap
|
||||
|
||||
QUnit.begin = function () {
|
||||
console.log('Starting test suite');
|
||||
console.log('================================================\n');
|
||||
};
|
||||
|
||||
QUnit.moduleDone = function (opts) {
|
||||
if (opts.failed === 0) {
|
||||
console.log('\u2714 All tests passed in "' + opts.name + '" module');
|
||||
} else {
|
||||
console.log('\u2716 ' + opts.failed + ' tests failed in "' + opts.name + '" module');
|
||||
}
|
||||
};
|
||||
|
||||
QUnit.done = function (opts) {
|
||||
console.log('\n================================================');
|
||||
console.log('Tests completed in ' + opts.runtime + ' milliseconds');
|
||||
console.log(opts.passed + ' tests of ' + opts.total + ' passed, ' + opts.failed + ' failed.');
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue