Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'js/tests/unit/phantom.js')
-rw-r--r--js/tests/unit/phantom.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/js/tests/unit/phantom.js b/js/tests/unit/phantom.js
index cf9da25375..bf480ecaaa 100644
--- a/js/tests/unit/phantom.js
+++ b/js/tests/unit/phantom.js
@@ -2,7 +2,7 @@
* grunt-contrib-qunit
* http://gruntjs.com/
*
- * Copyright (c) 2013 "Cowboy" Ben Alman, contributors
+ * Copyright (c) 2013 'Cowboy' Ben Alman, contributors
* Licensed under the MIT license.
*/
@@ -46,23 +46,23 @@
QUnit.begin = function () {
sendMessage('qunit.begin')
- console.log("Starting test suite")
- console.log("================================================\n")
+ console.log('Starting test suite')
+ console.log('================================================\n')
}
QUnit.moduleDone = function (opts) {
if (opts.failed === 0) {
- console.log("\r\u2714 All tests passed in '" + opts.name + "' module")
+ console.log('\r\u2714 All tests passed in "' + opts.name + '" module')
} else {
- console.log("\u2716 " + opts.failed + " tests failed in '" + opts.name + "' module")
+ console.log('\u2716 ' + opts.failed + ' tests failed in "' + opts.name + '" module')
}
sendMessage('qunit.moduleDone', opts.name, opts.failed, opts.passed, opts.total)
}
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.")
+ console.log('\n================================================')
+ console.log('Tests completed in ' + opts.runtime + ' milliseconds')
+ console.log(opts.passed + ' tests of ' + opts.total + ' passed, ' + opts.failed + ' failed.')
sendMessage('qunit.done', opts.failed, opts.passed, opts.total, opts.runtime)
}