Tone.js/test/test.js
2014-10-13 17:20:32 -04:00

24 lines
No EOL
581 B
JavaScript

require.config({
baseUrl:"./",
paths : {
"Tone" : "../Tone",
"chai" : "./testDeps/chai",
"Recorder" : "./testDeps/recorder"
},
shim : {
"Recorder" : {
exports : "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"];
// var allTests = ["tests/Core", "tests/Instruments"];
require(allTests, function(){
mocha.run();
});