mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-02 15:08:42 +00:00
11 lines
No EOL
225 B
JavaScript
11 lines
No EOL
225 B
JavaScript
require.config({
|
|
baseUrl:"./",
|
|
paths : {
|
|
"Tone" : "../Tone",
|
|
"chai" : "./testDeps/chai",
|
|
}
|
|
});
|
|
|
|
require(["tests/Timing", "tests/Signal", "tests/Math", "tests/Transport", "tests/Sources"], function(){
|
|
mocha.run();
|
|
}); |