setup mocha-phantomjs, test runner, and a few Util tests

This commit is contained in:
Eric Rowell
2013-08-28 23:19:29 -07:00
parent 2f0c889b1e
commit 4247553708
4 changed files with 47 additions and 1 deletions

22
test/runner.html Normal file
View File

@@ -0,0 +1,22 @@
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script src="../dist/kinetic-dev.js"></script>
<script>
mocha.ui('tdd');
var assert = chai.assert;
</script>
<script src="unit/Util-test.js"></script>
<script>
if (window.mochaPhantomJS) { mochaPhantomJS.run(); }
else { mocha.run(); }
</script>
</body>
</html>