(options)
| 1452 | } |
| 1453 | |
| 1454 | function queueRunnerFactory(options) { |
| 1455 | options.clearStack = options.clearStack || clearStack |
| 1456 | options.timeout = { |
| 1457 | setTimeout: realSetTimeout, |
| 1458 | clearTimeout: realClearTimeout, |
| 1459 | } |
| 1460 | options.fail = self.fail |
| 1461 | options.globalErrors = globalErrors |
| 1462 | options.onException = |
| 1463 | options.onException || |
| 1464 | function(e) { |
| 1465 | ;(runner.currentRunable() || topSuite).handleException(e) |
| 1466 | } |
| 1467 | options.deprecated = self.deprecated |
| 1468 | |
| 1469 | new j$.QueueRunner(options).execute() |
| 1470 | } |
| 1471 | |
| 1472 | const suiteBuilder = new j$.SuiteBuilder({ |
| 1473 | env: this, |
no test coverage detected