Created
May 14, 2013 03:49
-
-
Save KevinTCoughlin/5573538 to your computer and use it in GitHub Desktop.
Qunit and Backbone.js Testing Tutorial index.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> | |
<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