Skip to content

Instantly share code, notes, and snippets.

@wilsonpage
Forked from Raynos/x.js
Created November 21, 2011 16:56
Show Gist options
  • Save wilsonpage/1383217 to your computer and use it in GitHub Desktop.
Save wilsonpage/1383217 to your computer and use it in GitHub Desktop.
define([/* dependencies */], function(){
nodeunit.run({
"test my module": function (test) {
// run test
}
});
});
<!DOCTYPE html>
<html>
<head>
<title>DOM-shim unit tests</title>
<link rel="stylesheet" href="resources/nodeunit.css" type="text/css" />
<script src="resources/es5-shim.js"></script>
<script src="resources/nodeunit.js"></script>
<script src="../code/my/file"></script>
</head>
<body>
<h1 id="nodeunit-header">DOM-shim unit tests</h1>
<script>
require("moduleA.test.js", function (moduleATester) {
moduleATester.init();
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment