26 lines
742 B
HTML
26 lines
742 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
"http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<title>Jasmine Example</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.getEnv().execute();
|
|
setTimeout(function () {
|
|
document.getElementById('results').innerHTML = 'It\'s alive! :' +
|
|
(jasmine.getEnv().currentRunner.results.passedCount === 1);
|
|
}, 250);
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|
|
|