标签: javascript unit-testing meteor mocha meteor-blaze
我正在使用mocha为blaze模板编写测试用例。我想在测试中获取模板实例,我该怎么做到。 这是我现在使用的代码。
注意:调用(渲染)模板
var view = Blaze.renderWithData(ourTemplate, data, el);
作为回报,我得到了BlazeView对象。
但我想获取TemplateInstance(通过调用
var templateInstance=Template.instance();
任何建议。