summaryrefslogtreecommitdiff
path: root/bower_components/bootstrap/js/tests/unit/phantom.js
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2013-12-05 13:05:07 -0500
committerThomas Park <thomas@thomaspark.me>2013-12-05 13:05:07 -0500
commit157ec5feff877cd918a45985ee7368e3d9d7b5b0 (patch)
tree858b929a593790e7b5366860ff129600491b3877 /bower_components/bootstrap/js/tests/unit/phantom.js
parenta081f72bd6bfc5ae255d21ba58c10fd13cd1fac1 (diff)
3.0.2 -> 3.0.3
Diffstat (limited to 'bower_components/bootstrap/js/tests/unit/phantom.js')
-rw-r--r--bower_components/bootstrap/js/tests/unit/phantom.js69
1 files changed, 0 insertions, 69 deletions
diff --git a/bower_components/bootstrap/js/tests/unit/phantom.js b/bower_components/bootstrap/js/tests/unit/phantom.js
deleted file mode 100644
index c584c5a3..00000000
--- a/bower_components/bootstrap/js/tests/unit/phantom.js
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * grunt-contrib-qunit
- * http://gruntjs.com/
- *
- * Copyright (c) 2013 "Cowboy" Ben Alman, contributors
- * Licensed under the MIT license.
- */
-
-/*global QUnit:true, alert:true*/
-(function () {
- 'use strict';
-
- // Don't re-order tests.
- QUnit.config.reorder = false
- // Run tests serially, not in parallel.
- QUnit.config.autorun = false
-
- // Send messages to the parent PhantomJS process via alert! Good times!!
- function sendMessage() {
- var args = [].slice.call(arguments)
- alert(JSON.stringify(args))
- }
-
- // These methods connect QUnit to PhantomJS.
- QUnit.log = function(obj) {
- // What is this I don’t even
- if (obj.message === '[object Object], undefined:undefined') { return }
- // Parse some stuff before sending it.
- var actual = QUnit.jsDump.parse(obj.actual)
- var expected = QUnit.jsDump.parse(obj.expected)
- // Send it.
- sendMessage('qunit.log', obj.result, actual, expected, obj.message, obj.source)
- }
-
- QUnit.testStart = function(obj) {
- sendMessage('qunit.testStart', obj.name)
- }
-
- QUnit.testDone = function(obj) {
- sendMessage('qunit.testDone', obj.name, obj.failed, obj.passed, obj.total)
- }
-
- QUnit.moduleStart = function(obj) {
- sendMessage('qunit.moduleStart', obj.name)
- }
-
- QUnit.begin = function () {
- sendMessage('qunit.begin')
- 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")
- } else {
- 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.")
- sendMessage('qunit.done', opts.failed, opts.passed, opts.total, opts.runtime)
- }
-
-}())