Skip to content

Instantly share code, notes, and snippets.

@qwertypants
Created December 29, 2010 14:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qwertypants/758588 to your computer and use it in GitHub Desktop.
Save qwertypants/758588 to your computer and use it in GitHub Desktop.
Standard template for qUnit testing
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<link rel="stylesheet" href="http://code.jquery.com/qunit/qunit-git.css" type="text/css" media="screen">
<script type="text/javascript" src="http://code.jquery.com/qunit/qunit-git.js"></script>
<script type="text/javascript">
// Docs: http://docs.jquery.com/Qunit
</script>
</head>
<body>
<h1 id="qunit-header">Title</h1>
<h2 id="qunit-banner"></h2>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests">
</ol>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment