20aebec1fd
Putting scripts as the last item before the closing body tag is these days probably the most common approach to loading scripts in a page, so the jasmine template should arguably follow this convention. Also this means setup scripts within my src that assume body is present and which run before any specs do will not throw an error
25 lines
651 B
HTML
25 lines
651 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Jasmine Spec Runner</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/a.css">
|
|
|
|
</head>
|
|
<body>
|
|
<script src="p1.js"></script>
|
|
<script src="J1.js"></script>
|
|
<script src="J2.js"></script>
|
|
<script src="BOOT.js"></script>
|
|
<script src="V1.js"></script>
|
|
<script src="V2.js"></script>
|
|
<script src="H1.js"></script>
|
|
<script src="H2.js"></script>
|
|
<script src="SRC1.js"></script>
|
|
<script src="SRC2.js"></script>
|
|
<script src="SPEC1.js"></script>
|
|
<script src="SPEC2.js"></script>
|
|
<script src="R1.js"></script>
|
|
</body>
|
|
</html> |