0
我有一個功能,是聚合物網頁組件定製的功能。如何用聚合物進行模擬測試
getListDedications: function(e){
var idDate = e.model.__data__.date.data.id;
var checkId = function(element){
return element.id == idDate;
};
var responseID = this.dedications.filter(checkId);
this.data = JSON.stringify(responseID[0].entries) || [];
console.log(JSON.stringify(responseID[0].entries) || []);
}
我想測試它,我使用的是網絡組件測試儀,並使用gulp test:local
運行測試。 我知道我需要模擬e.model.__data__.date.data.id
,但我不知道如何