(options)
| 214 | let _instance = null; |
| 215 | |
| 216 | function getTestRunnerDetector(options) { |
| 217 | if (!_instance) _instance = new TestRunnerDetector(options || { workdir: process.cwd() }); |
| 218 | return _instance; |
| 219 | } |
| 220 | |
| 221 | function resetTestRunnerDetector() { _instance = null; } |
| 222 |