Created
May 2, 2013 11:53
-
-
Save kmtr/5501728 to your computer and use it in GitHub Desktop.
mocha chai front runner
This file contains hidden or 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> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Spec Runner</title> | |
<link rel="stylesheet" href="components/mocha/mocha.css" /> | |
</head> | |
<body> | |
<div id="mocha"></div> | |
<script src="components/jquery/jquery.js"></script> | |
<script src="components/chai/chai.js"></script> | |
<script src="components/mocha/mocha.js"></script> | |
<script>mocha.setup('bdd')</script> | |
<script src="test/spec/test.js"></script> | |
<script> | |
mocha.checkLeaks(); | |
mocha.globals(['jQuery']); | |
mocha.run(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment