Skip to content

Instantly share code, notes, and snippets.

@jadient
Last active December 16, 2015 18:39
Show Gist options
  • Save jadient/5479219 to your computer and use it in GitHub Desktop.
Save jadient/5479219 to your computer and use it in GitHub Desktop.
QUnit template
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Test</title>
<script src="http://cdnjs.cloudflare.com/ajax/libs/qunit/1.11.0/qunit.js"></script>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/qunit/1.11.0/qunit.css">
<script src="yourJavascriptFile.js"></script>
<script src="yourTestScriptFile.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment