Tone.js/test/test.js
2014-06-18 01:37:01 -04:00

21 lines
No EOL
375 B
JavaScript

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"], function(){
if (window.mochaPhantomJS) {
mochaPhantomJS.run();
} else {
mocha.run();
}
});