Skip to content

Commit

Permalink
Tests: Update to QUnit 1.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Feb 17, 2015
1 parent 64d6d7f commit 93e6147
Show file tree
Hide file tree
Showing 2 changed files with 1,853 additions and 1,225 deletions.
61 changes: 51 additions & 10 deletions test/qunit/qunit.css
@@ -1,12 +1,12 @@
/*!
* QUnit 1.14.0
* QUnit 1.17.1
* http://qunitjs.com/
*
* Copyright 2013 jQuery Foundation and other contributors
* Copyright jQuery Foundation and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2014-01-31T16:40Z
* Date: 2015-01-20T19:39Z
*/

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

#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;
}

#qunit-modulefilter-container {
float: right;
padding: 0.2em;
}

.qunit-url-config {
display: inline-block;
padding: 0.1em;
}

.qunit-filter {
display: block;
float: right;
margin-left: 1em;
}

/** Tests: Pass/Fail */
Expand All @@ -86,19 +98,35 @@
}

#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.hidepass li.pass, #qunit-tests.hidepass li.running {
#qunit-tests > li {
display: none;
}

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

#qunit-tests.hidepass li.running,
#qunit-tests.hidepass li.pass {
display: none;
}

#qunit-tests li strong {
cursor: pointer;
}

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

#qunit-tests li a {
padding: 0.5em;
color: #C2CCD1;
Expand Down Expand Up @@ -211,11 +239,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 All @@ -235,5 +278,3 @@
width: 1000px;
height: 1000px;
}


0 comments on commit 93e6147

Please sign in to comment.