mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 08:38:00 +00:00
20 lines
480 B
HTML
20 lines
480 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>TESTS</title>
|
|
<!-- GLOBAL SCRIPTS -->
|
|
<script src="./deps/mocha.js"></script>
|
|
<script src="./deps/chai.js"></script>
|
|
<!-- TESTS -->
|
|
<script type="text/javascript">
|
|
//don't log for tests
|
|
window.TONE_SILENCE_VERSION_LOGGING = true
|
|
</script>
|
|
<script data-main="Main.js" src="./deps/require.js"></script>
|
|
<!-- STYLE -->
|
|
<link rel="stylesheet" href="./deps/mocha.css" />
|
|
</head>
|
|
<body>
|
|
<div id="mocha"></div>
|
|
</body>
|
|
</html>
|