Tone.js/test/karmaTest.js

32 lines
808 B
JavaScript
Raw Normal View History

2016-03-04 21:25:44 +00:00
var tests = [];
for (var file in window.__karma__.files) {
if (window.__karma__.files.hasOwnProperty(file)) {
if (file.indexOf("/base/test/") === 0 && file.indexOf("js") !== -1 &&
file.indexOf("karmaTest.js") === -1 && file.indexOf("helper") === -1 &&
file.indexOf("deps") === -1) {
tests.push(file);
}
}
}
requirejs.config({
// Karma serves files from '/base'
baseUrl: "/base/test",
2017-03-26 18:51:25 +00:00
paths : {
"Tone" : "../Tone",
"Test" : "./helper/Test",
"Examples" : "../examples/scripts/ExampleList"
},
shim: {
"Examples" : {
exports : "ExampleList"
}
2016-03-04 21:25:44 +00:00
},
// ask Require.js to load these files (all our tests)
deps: tests,
// start test run, once Require.js is done
callback: window.__karma__.start
});