これはアプリケーションのコードです。残りのすべての関数は から呼び出されていinit()
ます。
Qunit を使用してコードのテストを開始する方法は、tests.js ファイルで関数を直接呼び出すと、" ReferenceError: init is not defined
" と表示されるためです。
var SOUND;
(function ($, undefined) {
// some code here
// and has variables and functions defined which get called inside this and are all interdependent.
init = function () {
}
})(jQuery);