babel/test/browser.html
Sebastian McKenzie 1d34d03ac8 rename to babel
2015-02-15 18:09:05 +11:00

20 lines
529 B
HTML

<html>
<head>
<meta charset="utf-8">
<title>Mocha</title>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="../node_modules/lodash/lodash.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script>mocha.setup("tdd");</script>
<script src="../dist/babel-test.js"></script>
<script>
mocha.globals(["regeneratorRuntime"]);
mocha.checkLeaks();
mocha.run();
</script>
</body>
</html>