Skip to content

Instantly share code, notes, and snippets.

@KevinTCoughlin
Created May 14, 2013 03:49
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 KevinTCoughlin/5573538 to your computer and use it in GitHub Desktop.
Save KevinTCoughlin/5573538 to your computer and use it in GitHub Desktop.
Qunit and Backbone.js Testing Tutorial index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>QUnit and Backbone Example</title>
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-1.11.0.css">
<script src="http://underscorejs.org/underscore.js"></script>
<script src="http://backbonejs.org/backbone.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="http://code.jquery.com/qunit/qunit-1.11.0.js"></script>
<script src="../src/app.js"></script>
<script src="/js/tests.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment