Skip to content

Commit

Permalink
Reporter: Uppercase skipped labels via CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
leobalter committed Sep 8, 2014
1 parent 9bff489 commit 7f8f5a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion reporter/html.js
Expand Up @@ -663,7 +663,7 @@ QUnit.testDone(function( details ) {
addClass( testItem, "skipped" );
skipped = document.createElement( "em" );
skipped.className = "qunit-skipped-label";
skipped.innerHTML = "SKIPPED";
skipped.innerHTML = "skipped";
testItem.insertBefore( skipped, testTitle );
} else {
addEvent( testTitle, "click", function() {
Expand Down
1 change: 1 addition & 0 deletions src/qunit.css
Expand Up @@ -229,6 +229,7 @@
line-height: 1.8em;
padding: 0 0.5em;
margin: -0.4em 0.4em -0.4em 0;
text-transform: uppercase;
}

/** Result */
Expand Down

0 comments on commit 7f8f5a9

Please sign in to comment.