Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 0.55 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <title>My unit tests!</title>
  5.     <link rel="stylesheet" href="resources/nodeunit.css" type="text/css" />
  6.     <script src="resources/es5-shim.js"></script>
  7.     <script src="resources/nodeunit.js"></script>
  8.   </head>
  9.   <body>
  10.     <h1 id="nodeunit-header">You win!</h1>
  11.     <script>
  12.       require([
  13.         "moduleA.test.js",
  14.         "moduleB.test.js",
  15.         ...
  16.       ], function () {
  17.           [].forEach.call(arguments, function (suite) {
  18.             nodeunit.run(suite);
  19.           });
  20.       });
  21.     </script>
  22.   </body>
  23. </html>