实习生2文档提供了以下示例,该示例在加载条件后在测试页上等待条件成立:
this.remote
.get(require.toUrl('./SomeTest.html'))
.then(pollUntil('return window.ready;', 5000));
不幸的是,在上一个示例中,它没有说明如何加载pollUntil帮助器以便使用它。是否有人有使用pollUntil的完整工作示例?
谢谢你的帮助。
最佳答案
我想我找到了答案:它可以通过加载模块intern/dojo/node!leadfoot/helpers/pollUntil
来工作,如下所示:
define([
'intern!object',
'intern/chai!assert',
'intern/dojo/node!leadfoot/helpers/pollUntil',
'../Request',
'require'
], function (registerSuite, assert, pollUntil, Request, require) {
关于javascript - 如何在Intern 2功能测试中加载pollUntil帮助程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24585377/