Skip to content

Instantly share code, notes, and snippets.

@elijahmanor
Created May 9, 2012 05:11
QUnit Test Suite Runner
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>QUnit Test Suite Runner</title>
<link rel="stylesheet" href="./qunit.css" />
<link rel="stylesheet" href="./qunit-composite.css" />
<script src="./qunit.js"></script>
<script src="./qunit-composite.js"></script>
<script>
QUnit.testSuites([
"./test1.html",
"./test2.html",
"./test3.html",
"./test4.html"
]);
</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