filer/tests/index.html

26 lines
518 B
HTML
Raw Normal View History

<!DOCTYPE html>
2013-05-31 07:52:04 +00:00
<html>
<head>
<meta charset="utf-8">
<title>Filer Tests</title>
2014-09-11 20:06:27 +00:00
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="../node_modules/chai/chai.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script>
mocha.setup('bdd').timeout(5000).slow(250);;
2013-05-31 07:52:04 +00:00
window.onload = function() {
mocha.checkLeaks();
mocha.run();
};
</script>
<script src="./index.js"></script>
2013-05-31 07:52:04 +00:00
</body>
</html>