[all] Fix tests

This commit is contained in:
KirillovIlya
2024-08-29 17:05:56 +03:00
parent e87d02787b
commit bec087d8d6
2 changed files with 8 additions and 1 deletions

View File

@ -61,6 +61,9 @@ const AscTest = window.AscTest || {};
TurnOff : function(){},
TurnOn : function(){},
init : function () {},
IsOn : function() {
return true;
}
};
AscCommon.g_oIdCounter.m_bLoad = false;

View File

@ -71,7 +71,11 @@ var AscTest = AscTest || {};
return this.Get_ById(id);
},
TurnOff : function(){},
TurnOn : function(){}
TurnOn : function(){},
IsOn : function()
{
return true
}
};
AscCommon.g_oIdCounter.m_bLoad = false;