Tone.js/test/test.js

23 lines
525 B
JavaScript
Raw Normal View History

2014-06-18 05:37:01 +00:00
require.config({
baseUrl:"./",
paths : {
"Tone" : "../Tone",
"chai" : "./testDeps/chai",
2014-06-19 02:33:08 +00:00
"Recorder" : "./testDeps/recorder"
},
shim : {
"Recorder" : {
exports : "Recorder"
}
2014-06-18 05:37:01 +00:00
}
});
2014-09-05 04:58:51 +00:00
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"];
2014-10-03 21:24:02 +00:00
// var allTests = ["tests/Core", "tests/Signal"];
2014-06-19 02:33:08 +00:00
require(allTests, function(){
mocha.run();
2014-06-18 05:37:01 +00:00
});