Created
December 8, 2012 19:25
-
-
Save desireesantos/4241539 to your computer and use it in GitHub Desktop.
SpecRunner.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | |
"http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<title>Jasmine Spec Runner</title> | |
<link rel="stylesheet" type="text/css" href="lib/jasmine-1.3.0/jasmine.css"> | |
<script type="text/javascript" src="lib/jasmine-1.3.0/jasmine.js"></script> | |
<script type="text/javascript" src="lib/jasmine-1.3.0/jasmine-html.js"></script> | |
<script type="text/javascript" charset="UTF-8" src="lib/jquery-1.3.1.min.js"></script> | |
<!-- include source files here... --> | |
<script type="text/javascript" src="/src/app/control/Main.js"></script> | |
<!-- include spec files here... --> | |
<script type="text/javascript" src="/spec/controlWord_Spec.js"></script> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
jasmine.getEnv().addReporter(new jasmine.TrivialReporter()); | |
jasmine.getEnv().execute(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment