You've already forked AudioPlayr
mirror of
https://github.com/FullScreenShenanigans/AudioPlayr.git
synced 2026-04-28 13:01:36 -07:00
a2832642e8
Whoops.
31 lines
716 B
HTML
31 lines
716 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/AudioPlayr.js"></script>
|
|
<script src="ItemsHoldr/ItemsHoldr.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>
|