Tone.js/test/test.js
Yotam Mann c9713d46dd renamed tests/WebAudio to tests/Core
added tests to core
2014-06-20 00:57:56 -04:00

19 lines
No EOL
361 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/Math", "tests/Transport", "tests/Sources"];
require(allTests, function(){
mocha.run();
});