karma-runner / karma-runner/karma
Add hook to delay `start()`
Open
api
help wanted
type: backlog
type: feature
- Dominant language
- JavaScript
- Stars
- 12k
- Forks
- 1.7k
- PR merge metrics
- No merged PRs in 30d
Description
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:
``` js
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.
Contributor guide
Assessment
This issue has not been assessed yet.