Tone.js/test/test.js

21 lines
392 B
JavaScript
Raw Normal View History

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