deadunit
Version:
A dead-simple nestable unit testing library for javascript and node.js.
56 lines (45 loc) • 1.47 kB
HTML
<style>
body {
margin: 0px;
background: rgb(20,20,20);
color: white;
}
iframe {
width: 100%;
overflow: hidden;
border: none;
}
iframe.short {
height:100px;
}
iframe.simpleAsyncException {
height:170px;
}
iframe.simpleException {
height:300px;
}
iframe.simpleTimeout {
height:100px;
}
iframe.long {
height: 2500px;
}
.title {
margin-left: 8px;
}
</style>
<div>
<div class="title">Simple Success</div>
<iframe class="short" src="generated/simpleSuccess.html"></iframe>
<div class="title">Simple Failure</div>
<iframe class="short" src="generated/simpleFailure.html"></iframe>
<div class="title">Simple Exception</div>
<iframe class="simpleException" src="generated/simpleException.html"></iframe>
<div class="title">Simple Exception Without a Stacktrace</div>
<iframe class="short" src="generated/simpleExceptionNoTrace.html"></iframe>
<div class="title">Simple Asynchronous Exception</div>
<iframe class="simpleAsyncException" src="generated/simpleAsyncException.html"></iframe>
<div class="title">Simple Timeout / count failure</div>
<iframe class="simpleTimeout" src="generated/simpleTimeout.html"></iframe>
<iframe class="long" src="generated/testGroups.html"></iframe>
</div>