Skip to content

Instantly share code, notes, and snippets.

@kmtr
Created May 2, 2013 11:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmtr/5501728 to your computer and use it in GitHub Desktop.
Save kmtr/5501728 to your computer and use it in GitHub Desktop.
mocha chai front runner
<!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