Files
StyleGuidr/Tests/tests.html
Josh Goldberg 2ce056abf6 Initial population commit
Recreating repo, long story.
2015-08-19 22:38:18 -07:00

30 lines
663 B
HTML

<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="../Source/StyleGuidr.js"></script>
<script>
mocha.setup("bdd")
mocha.reporter("html");
</script>
<script src="tests.js"></script>
<script>
if (typeof mochaPhantomJS !== "undefined") {
mochaPhantomJS.run();
} else {
mocha.run();
}
</script>
</body>
</html>