removing old files

This commit is contained in:
Yotam Mann 2015-08-16 22:22:25 -04:00
parent 4b78dcbed1
commit 47b2d21fce
2 changed files with 0 additions and 33 deletions

View file

@ -1,14 +0,0 @@
<html>
<head>
<meta charset="utf-8">
<title>SOUND TEST</title>
<script src="./testDeps/mocha.js"></script>
<script data-main="tests/Sound.js" src="./testDeps/require.js"></script>
<link rel="stylesheet" href="./testDeps/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script>mocha.setup('bdd')</script>
</body>
</html>

View file

@ -1,19 +0,0 @@
require.config({
baseUrl:"./",
paths : {
"Tone" : "../Tone",
"chai" : "./testDeps/chai",
"Recorder" : "./testDeps/Tone.Recorder"
},
});
var maxTimeout = 1000;
var allTests = ["tests/Core", "tests/Timing", "tests/Signal", "tests/SignalComparison",
"tests/SignalMath", "tests/Transport", "tests/Sources", "tests/Components",
"tests/Effect", "tests/Instruments", "tests/EffectPresets", "tests/InstrumentPresets", "tests/Expr"];
// var allTests = ["tests/Core", "tests/Signal"];
require(allTests, function(){
mocha.run();
});