可以在调用夹具的设置中放置刷新功能吗?我已经尝试过了,它仍然工作得更好,因为我不需要在每次测试中都刷新。在谷歌上找不到做那种事情的例子。有什么建议吗?
setup(function(done) {
flush(function() {
var element = fixture('basic');
done();
});
});
并且测试将像这样直接。
test('instantiating the element works', function() {
assert.equal(Polymer.dom(element.root).querySelector('paper-card').is, 'paper-card);
});
*测试部分的纸卡在dom-repeat中渲染。
谢谢大家。