Tone.js/test/test.js
2014-08-23 13:25:39 -04:00

20 lines
No EOL
467 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/Transport", "tests/Sources", "tests/Components"];
// var allTests = ["tests/Core", "tests/SignalMath"];
require(allTests, function(){
mocha.run();
});