50 lines
982 B
Plaintext
50 lines
982 B
Plaintext
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
"http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<title><%= title %></title>
|
|
|
|
<%= favicon %>
|
|
<%= jasmine_tags %>
|
|
|
|
<!-- include source files here... -->
|
|
<%= source_tags %>
|
|
|
|
<!-- include spec files here... -->
|
|
<%= 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);
|
|
};
|
|
|
|
var currentWindowOnload = window.onload;
|
|
|
|
window.onload = function() {
|
|
if (currentWindowOnload) {
|
|
currentWindowOnload();
|
|
}
|
|
execJasmine();
|
|
};
|
|
|
|
function execJasmine() {
|
|
jasmineEnv.execute();
|
|
}
|
|
|
|
})();
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
</body>
|
|
</html>
|