Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « browserify « test - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2ff012aa67e712331e4aeb0042ef556c222dd22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<head>
    <link rel="stylesheet" href="../../node_modules/mocha/mocha.css" />
    <script src="../../node_modules/mocha/mocha.js" type="text/javascript"></script>
    <script src="bundle.js" type="text/javascript"></script>
</head>
<body>
  <script type="text/javascript">
      window.onload = function () {
          console.log("These tests will only work in all browsers with the console open");
          mocha.setup("bdd");
          enableTests();
          mocha.run();
      };
  </script>
  <div id="mocha"></div>
</body>