restructure test directory

This commit is contained in:
Sebastian McKenzie
2014-10-11 22:42:31 +11:00
parent a1b2da49d7
commit bb9b7455b5
312 changed files with 24 additions and 25 deletions

20
test/browser.html Normal file
View File

@@ -0,0 +1,20 @@
<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/proclaim/lib/proclaim.js"></script>
<script src="../node_modules/lodash/lodash.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../dist/6to5.js"></script>
<script>mocha.setup("tdd");</script>
<script src="../dist/6to5-test.js"></script>
<script>
mocha.checkLeaks();
mocha.run();
</script>
</body>
</html>