mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
21 lines
No EOL
375 B
JavaScript
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();
|
|
}
|
|
}); |