/// <reference path="../../../Scripts/myObjectScript.js" />
module("My Test", {
setup: function () {
setUpDOM();
},
teardown: function () {
}
});
test("initialize. page load. setPrimaryWarning bound to change event of primary checkbox", function () {
myObject.Initialize();
var events = $("#Primary").data('events');
equal(1, events.length);
});
function setUpDOM() {
var $primaryCheckBox = "<input data-val='true' data-val-required='Need Primary' id='Primary' name='Primary' type='checkbox' value='false' data-blur-setup='true'>";
$("#qunit-fixture").append($primaryCheckBox);
}
これはエラーDied on test #1 undefined: Unable to get value of property 'data': object is null or undefined で失敗します
chrome $("#Primary").data('events'); の開発ツールでテストすると、オブジェクトを返します。イベントが qunit の要素にバインドされているかどうかを確認する方法、または上記のテストをレイアウトした方法の何が問題なのですか?