2014-06-18 05:37:01 +00:00
|
|
|
require.config({
|
|
|
|
baseUrl:"./",
|
|
|
|
paths : {
|
|
|
|
"Tone" : "../Tone",
|
|
|
|
"chai" : "./testDeps/chai",
|
2014-06-19 02:33:08 +00:00
|
|
|
"Recorder" : "./testDeps/recorder"
|
|
|
|
},
|
|
|
|
shim : {
|
|
|
|
"Recorder" : {
|
|
|
|
exports : "Recorder"
|
|
|
|
}
|
2014-06-18 05:37:01 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-06-20 04:57:56 +00:00
|
|
|
var allTests = ["tests/Core", "tests/Timing", "tests/Signal", "tests/Math", "tests/Transport", "tests/Sources"];
|
2014-06-21 19:55:07 +00:00
|
|
|
// var allTests = ["tests/Components"];
|
2014-06-19 02:33:08 +00:00
|
|
|
|
|
|
|
require(allTests, function(){
|
2014-06-18 22:43:47 +00:00
|
|
|
mocha.run();
|
2014-06-18 05:37:01 +00:00
|
|
|
});
|