mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-17 00:58:09 +00:00
c9713d46dd
added tests to core
19 lines
No EOL
361 B
JavaScript
19 lines
No EOL
361 B
JavaScript
require.config({
|
|
baseUrl:"./",
|
|
paths : {
|
|
"Tone" : "../Tone",
|
|
"chai" : "./testDeps/chai",
|
|
"Recorder" : "./testDeps/recorder"
|
|
},
|
|
shim : {
|
|
"Recorder" : {
|
|
exports : "Recorder"
|
|
}
|
|
}
|
|
});
|
|
|
|
var allTests = ["tests/Core", "tests/Timing", "tests/Signal", "tests/Math", "tests/Transport", "tests/Sources"];
|
|
|
|
require(allTests, function(){
|
|
mocha.run();
|
|
}); |