Tone.js/test/test.js
2014-06-18 18:43:47 -04:00

11 lines
No EOL
225 B
JavaScript

require.config({
baseUrl:"./",
paths : {
"Tone" : "../Tone",
"chai" : "./testDeps/chai",
}
});
require(["tests/Timing", "tests/Signal", "tests/Math", "tests/Transport", "tests/Sources"], function(){
mocha.run();
});