Skip to content

Instantly share code, notes, and snippets.

@ceth-x86
Last active December 15, 2015 19:09
Show Gist options
  • Save ceth-x86/5309333 to your computer and use it in GitHub Desktop.
Save ceth-x86/5309333 to your computer and use it in GitHub Desktop.
QUnit : Minimal example
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>QUnit Example</title>
<link rel="stylesheet" href="qunit.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="qunit.js"></script>
<script src="tests.js"></script>
</body>
</html>
test('my first test', function() {
ok(true);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment