25 lines
653 B
HTML
25 lines
653 B
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
||
|
"http://www.w3.org/TR/html4/loose.dtd">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Jasmine Tests</title>
|
||
|
<script type="text/javascript" src="../lib/jasmine.js"></script>
|
||
|
<script type="text/javascript" src="example.js"></script>
|
||
|
<link type="text/css" rel="stylesheet" href="../lib/jasmine.css"/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>
|
||
|
Running Jasmine Example Specs
|
||
|
</h1>
|
||
|
<div id="results"></div>
|
||
|
<script type="text/javascript">
|
||
|
Jasmine.execute();
|
||
|
setTimeout(function () {
|
||
|
document.getElementById('results').innerHTML = 'It\'s alive! :' + (Jasmine.results.passedCount ==1);
|
||
|
}, 250);
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
|