aboutsummaryrefslogtreecommitdiff
path: root/js/tests/unit/phantom.js
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2013-09-18 19:50:02 +0300
committerXhmikosR <[email protected]>2013-12-08 12:44:14 +0200
commiteca8ff380388c1187bc2c86e0ae7fa80aa33111e (patch)
tree1169002b77366007abd0be9efff9bf4b85a5b894 /js/tests/unit/phantom.js
parented63dfd8d301debf35bc93d155dff4527c94388d (diff)
downloadbootstrap-eca8ff380388c1187bc2c86e0ae7fa80aa33111e.tar.xz
bootstrap-eca8ff380388c1187bc2c86e0ae7fa80aa33111e.zip
Use single quotes consistently.
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 cf9da2537..bf480ecaa 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)
}