Skip to content

Instantly share code, notes, and snippets.

@Raynos
Forked from wilsonpage/moduleA.test.js
Created November 21, 2011 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Raynos/1383248 to your computer and use it in GitHub Desktop.
Save Raynos/1383248 to your computer and use it in GitHub Desktop.
define([/* dependencies */], function(dep){
return {
"test my module": function (test) {
// run test
}
};
});
<!DOCTYPE html>
<html>
<head>
<title>My 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>
</head>
<body>
<h1 id="nodeunit-header">You win!</h1>
<script>
require([
"moduleA.test.js",
"moduleB.test.js",
...
], function () {
[].forEach.call(arguments, function (suite) {
nodeunit.run(suite);
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment