-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec.tmpl
31 lines (25 loc) · 1023 Bytes
/
spec.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Banana Banana Banana</title>
<link rel="stylesheet" href="/css/site.css" type="text/css" />
<link rel="stylesheet" href="/css/jasmine.css" type="text/css" />
<script type="text/javascript" src="/js/jasmine.js"></script>
<script type="text/javascript" src="/js/jasmine-html.js"></script>
<script type="text/javascript" src="/js/jasmine.junit_reporter.js"></script>
</head>
<body>
<a class="home_link" href="/">Back to Index</a>
<script type="text/javascript">
var reporter = new jasmine.JUnitReporter();
describe('Banana Banana Banana', function() {
it("Should remove this test, because it's just a placeholder.", function() {
});
});
jasmine.getEnv().addReporter(reporter);
jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
jasmine.getEnv().execute();
</script>
</body>
</html>