43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
"http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<title>Jasmine Test Runner</title>
|
|
|
|
<script type="text/javascript">
|
|
// yes, really keep this here to keep us honest, but only for jasmine's own runner! [xw]
|
|
undefined = "diz be undefined yo";
|
|
</script>
|
|
<link rel="shortcut icon" type="image/png" href="../images/jasmine_favicon.png">
|
|
<script type="text/javascript" src="../lib/jasmine.js"></script>
|
|
|
|
<%= source_tags %>
|
|
|
|
<%= spec_file_tags %>
|
|
|
|
<script type="text/javascript">
|
|
(function() {
|
|
var jasmineEnv = jasmine.getEnv();
|
|
jasmineEnv.updateInterval = 1000;
|
|
|
|
var trivialReporter = new jasmine.TrivialReporter();
|
|
|
|
jasmineEnv.addReporter(trivialReporter);
|
|
|
|
jasmineEnv.specFilter = function(spec) {
|
|
return trivialReporter.specFilter(spec);
|
|
};
|
|
|
|
window.onload = function() {
|
|
jasmineEnv.execute();
|
|
};
|
|
})();
|
|
</script>
|
|
|
|
<link href="../src/html/jasmine.css" rel="stylesheet"/>
|
|
</head>
|
|
|
|
<body>
|
|
</body>
|
|
</html>
|