forked from rmurphey/jqfundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
31 lines (24 loc) · 895 Bytes
/
test.html
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
<!doctype html>
<html>
<head>
<title>Jasmine Test Runner</title>
<link rel="stylesheet" type="text/css" href="../../exercises/libs/jasmine/jasmine.css">
<script type="text/javascript" src="../../exercises/libs/jasmine/jasmine.js"></script>
<script type="text/javascript" src="../../exercises/libs/jasmine/jasmine-html.js"></script>
<!--
include the code you want to test here; you can include it via script tag,
or if you're just trying this out, you can include it directly inline
-->
<!-- edit these files to create your tests -->
<script src="../../exercises/libs/jquery-1.5.1.js"></script>
<script src="../portlet.js"></script>
<script src="portlet-test.js"></script>
</head>
<body>
<div id="target"></div>
<script type="text/javascript">
jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
jasmine.getEnv().execute();
</script>
</body>
</html>