apihelp wantedtype: backlogtype: feature
倉庫指標
- Star
- (11,918 star)
- PR 合併指標
- (30 天內沒有已合併 PR)
描述
For Ext.js, ember, and perhaps other applications, the test runner could use a direct API for delaying the test suite from running. Here's my current work-around:
window.__testacular__.loaded = function(){};
someApp.on('init', function() {
window.__testacular__.start();
});
And then add it to the files array in the test config. Haven't had a chance to think about the API for that yet.