Tone.js/test/test.js

11 lines
225 B
JavaScript
Raw Normal View History

2014-06-18 05:37:01 +00:00
require.config({
baseUrl:"./",
paths : {
"Tone" : "../Tone",
"chai" : "./testDeps/chai",
}
});
require(["tests/Timing", "tests/Signal", "tests/Math", "tests/Transport", "tests/Sources"], function(){
mocha.run();
2014-06-18 05:37:01 +00:00
});