You've already forked StyleGuidr
mirror of
https://github.com/FullScreenShenanigans/StyleGuidr.git
synced 2026-04-28 13:03:06 -07:00
2ce056abf6
Recreating repo, long story.
30 lines
663 B
HTML
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>
|