Skip to content

Commit

Permalink
Tests:Build: update qunit and fix incorrect test
Browse files Browse the repository at this point in the history
* Update QUnit to the latest version (1.20.0)

* Corrected test was dependent on QUnit UI, which is always a bad idea
  • Loading branch information
markelog committed Jan 29, 2016
1 parent f0f4ef7 commit b97c8d3
Show file tree
Hide file tree
Showing 4 changed files with 2,352 additions and 1,989 deletions.
24 changes: 17 additions & 7 deletions external/qunit/qunit.css
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
/*!
* QUnit 1.18.0
* QUnit 1.20.0
* http://qunitjs.com/
*
* Copyright jQuery Foundation and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2015-04-03T10:23Z
* Date: 2015-10-27T17:53Z
*/

/** Font Family and Sizes */

#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-filteredTest, #qunit-userAgent, #qunit-testresult {
font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
}

#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
#qunit-testrunner-toolbar, #qunit-filteredTest, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
#qunit-tests { font-size: smaller; }


/** Resets */

#qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {
#qunit-tests, #qunit-header, #qunit-banner, #qunit-filteredTest, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {
margin: 0;
padding: 0;
}
Expand Down Expand Up @@ -68,6 +68,12 @@
overflow: hidden;
}

#qunit-filteredTest {
padding: 0.5em 1em 0.5em 1em;
background-color: #F4FF77;
color: #366097;
}

#qunit-userAgent {
padding: 0.5em 1em 0.5em 1em;
background-color: #2B81AF;
Expand Down Expand Up @@ -118,8 +124,8 @@
#qunit-tests.hidepass li.pass {
visibility: hidden;
position: absolute;
width: 0px;
height: 0px;
width: 0;
height: 0;
padding: 0;
border: 0;
margin: 0;
Expand Down Expand Up @@ -162,6 +168,10 @@
border-radius: 5px;
}

.qunit-source {
margin: 0.6em 0 0.3em;
}

.qunit-collapsed {
display: none;
}
Expand Down
Loading

1 comment on commit b97c8d3

@mgol
Copy link
Member

@mgol mgol commented on b97c8d3 Jan 29, 2016

Choose a reason for hiding this comment

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

Thanks, @markelog. :) I didn't have time to properly investigate last time.

Please sign in to comment.