forked from toranb/ember-pagination-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phantom-runner.html
24 lines (24 loc) · 1003 Bytes
/
phantom-runner.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
<!DOCTYPE html>
<html>
<head>
<title>javascript unit tests</title>
<link href="/static/jasmine/jasmine.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="/static/jasmine/jasmine.js"></script>
<script type="text/javascript" src="/static/jasmine/jasmine-html.js"></script>
<script type="text/javascript" src="/static/script/vendor/jquery-1.9.1.js"></script>
<script type="text/javascript" src="/static/script/vendor/handlebars-1.0.0-rc.3.js"></script>
<script type="text/javascript" src="/static/script/vendor/ember-1.0.0-rc.1.js"></script>
<script type="text/javascript" src="/static/script/vendor/ember-data.js"></script>
</head>
<body>
<script type="text/x-handlebars" data-template-name="application">
{{ outlet }}
</script>
<script type="text/x-handlebars" data-template-name="person">
</script>
<script type="text/javascript">
var require = function(script) {
document.write('<script src="http://localhost:8091/' + script + '"></' + 'script>');
}
</script>
</body>