Tone.js/test/test.js
2014-07-03 23:48:27 -04:00

20 lines
No EOL
477 B
JavaScript

require.config({
baseUrl:"./",
paths : {
"Tone" : "../Tone",
"chai" : "./testDeps/chai",
"Recorder" : "./testDeps/recorder"
},
shim : {
"Recorder" : {
exports : "Recorder"
}
}
});
var allTests = ["tests/Core", "tests/Timing", "tests/Signal", "tests/SignalComparison", "tests/SignalMath", "tests/Math", "tests/Transport", "tests/Sources", "tests/Components"];
// var allTests = ["tests/Core", "tests/Signal"];
require(allTests, function(){
mocha.run();
});