2013-05-31 07:52:04 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
2014-01-21 21:25:09 +00:00
|
|
|
<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>
|
2014-01-21 21:25:09 +00:00
|
|
|
<script>
|
2014-05-26 20:29:46 +00:00
|
|
|
mocha.setup('bdd').timeout(5000).slow(250);;
|
2013-05-31 07:52:04 +00:00
|
|
|
|
2014-05-26 20:29:46 +00:00
|
|
|
window.onload = function() {
|
|
|
|
mocha.checkLeaks();
|
|
|
|
mocha.run();
|
2014-01-21 21:25:09 +00:00
|
|
|
};
|
|
|
|
</script>
|
2014-05-26 20:57:08 +00:00
|
|
|
<script src="../dist/filer-test.js"></script>
|
2014-01-21 21:25:09 +00:00
|
|
|
</head>
|
2013-05-31 07:52:04 +00:00
|
|
|
<body>
|
2014-01-21 21:25:09 +00:00
|
|
|
<div id="mocha"></div>
|
2013-05-31 07:52:04 +00:00
|
|
|
</body>
|
|
|
|
</html>
|