Allow individual specs to be rerun; show skipped tests in gray.

This commit is contained in:
Aaron Peckham & Christian Williams
2009-08-10 15:39:48 -07:00
parent 22226f3423
commit e476f2375a
4 changed files with 34 additions and 8 deletions

View File

@@ -20,12 +20,13 @@ p {
color: red;
}
.fail_in_summary {
.failInSummary {
color: red;
}
.spec {
margin: 5px;
clear: both;
}
.passed {
@@ -36,6 +37,11 @@ p {
background-color: pink;
}
.skipped {
color: #777;
background-color: #eee;
}
.resultMessage {
white-space: pre;
}
@@ -49,3 +55,8 @@ p {
border-left: 1px solid red;
padding-left: 5em;
}
.runSpec {
margin-left: 5px;
float: right;
}