mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-20 07:43:54 +00:00
21 lines
375 B
JavaScript
21 lines
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();
|
||
|
}
|
||
|
});
|