filer/tests/index.html

25 lines
867 B
HTML
Raw Normal View History

2013-05-31 07:52:04 +00:00
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
2014-09-11 20:06:27 +00:00
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
2014-09-30 18:47:13 +00:00
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/mocha/1.21.4/mocha.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/mocha/1.21.4/mocha.js"></script>
<script>window.mocha || document.write('<script src="../node_modules/mocha/mocha.js"><\/script>')</script>
<script src="//cdnjs.cloudflare.com/ajax/libs/chai/1.9.2/chai.min.js"></script>
<script>window.chai || document.write('<script src="../node_modules/chai/chai.js"><\/script>')</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>
2014-05-26 20:57:08 +00:00
<script src="../dist/filer-test.js"></script>
</head>
2013-05-31 07:52:04 +00:00
<body>
<div id="mocha"></div>
2013-05-31 07:52:04 +00:00
</body>
</html>