If any assert in SetUp function fails that test will be skipped.
This commit is contained in:
parent
3efe0fed79
commit
6d3454e153
11 changed files with 377 additions and 293 deletions
|
@ -104,6 +104,7 @@ $(document).ready(function() {
|
|||
/* Color the tests based on the result */
|
||||
$("span.testResult[result='passed']").addClass('passed');
|
||||
$("span.testResult[result='failed']").addClass('failed');
|
||||
$("span.testResult[result='skipped']").addClass('skipped');
|
||||
|
||||
/* Color the asserts based on the result */
|
||||
$("span.assertResult[result='pass']").addClass('passed');
|
||||
|
@ -157,6 +158,10 @@ div, h1 {
|
|||
color: red;
|
||||
}
|
||||
|
||||
.skipped {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue