Skip to content

Commit

Permalink
Tests: Update QUnit
Browse files Browse the repository at this point in the history
  • Loading branch information
gibson042 committed Dec 5, 2014
1 parent 2c1b556 commit 6748ba3
Show file tree
Hide file tree
Showing 3 changed files with 1,770 additions and 1,212 deletions.
41 changes: 34 additions & 7 deletions external/qunit/qunit.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* QUnit 1.14.0
* QUnit 1.16.0
* http://qunitjs.com/
*
* Copyright 2013 jQuery Foundation and other contributors
* Copyright 2006, 2014 jQuery Foundation and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2014-01-31T16:40Z
* Date: 2014-12-03T16:32Z
*/

/** Font Family and Sizes */
Expand Down Expand Up @@ -62,14 +62,14 @@
}

#qunit-testrunner-toolbar {
padding: 0.5em 0 0.5em 2em;
padding: 0.5em 1em 0.5em 1em;
color: #5E740B;
background-color: #EEE;
overflow: hidden;
}

#qunit-userAgent {
padding: 0.5em 0 0.5em 2.5em;
padding: 0.5em 1em 0.5em 1em;
background-color: #2B81AF;
color: #FFF;
text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
Expand All @@ -86,11 +86,19 @@
}

#qunit-tests li {
padding: 0.4em 0.5em 0.4em 2.5em;
padding: 0.4em 1em 0.4em 1em;
border-bottom: 1px solid #FFF;
list-style-position: inside;
}

#qunit-tests > li {
display: none;
}

#qunit-tests li.pass, #qunit-tests li.running, #qunit-tests li.fail {
display: list-item;
}

#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running {
display: none;
}
Expand All @@ -99,6 +107,10 @@
cursor: pointer;
}

#qunit-tests li.skipped strong {
cursor: default;
}

#qunit-tests li a {
padding: 0.5em;
color: #C2CCD1;
Expand Down Expand Up @@ -211,11 +223,26 @@

#qunit-banner.qunit-fail { background-color: #EE5757; }

/*** Skipped tests */

#qunit-tests .skipped {
background-color: #EBECE9;
}

#qunit-tests .qunit-skipped-label {
background-color: #F4FF77;
display: inline-block;
font-style: normal;
color: #366097;
line-height: 1.8em;
padding: 0 0.5em;
margin: -0.4em 0.4em -0.4em 0;
}

/** Result */

#qunit-testresult {
padding: 0.5em 0.5em 0.5em 2.5em;
padding: 0.5em 1em 0.5em 1em;

color: #2B81AF;
background-color: #D2E0E6;
Expand Down
Loading

1 comment on commit 6748ba3

@markelog
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was suppose to happen with #1654

Please sign in to comment.