Skip to content

Instantly share code, notes, and snippets.

@andrijac
Created August 29, 2012 23:27
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 andrijac/3520324 to your computer and use it in GitHub Desktop.
Save andrijac/3520324 to your computer and use it in GitHub Desktop.
JS Test template
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/qunit/qunit-git.css" />
<title></title>
</head>
<body>
<div id="qunit"></div>
<!---------- scripts ----------------->
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script src="http://code.jquery.com/qunit/qunit-git.js"></script>
<script>
$(function () {
module("Test app");
test("Test1", function () {
ok(true);
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment