Skip to content

Instantly share code, notes, and snippets.

@notdol
Created February 14, 2013 02:13
Show Gist options
  • Save notdol/4950134 to your computer and use it in GitHub Desktop.
Save notdol/4950134 to your computer and use it in GitHub Desktop.
qunit sample
<!DOCTYPE html>
<html>
<head>
<title>QUnit Test Suite</title>
<link rel="stylesheet" href="http://github.com/jquery/qunit/raw/master/qunit/qunit.css" type="text/css" media="screen">
<script type="text/javascript" src="http://github.com/jquery/qunit/raw/master/qunit/qunit.js"></script>
<!-- Your project file goes here -->
<!--script type="text/javascript" src="myProject.js"></script-->
<!-- Your tests file goes here -->
<!--script type="text/javascript" src="myTests.js"></script-->
</head>
<body>
<h1 id="qunit-header">QUnit Test Suite</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<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