* Create CodeceptJS runner. * Config and options should be passed * * @param {*} config * @param {*} opts
(config, opts)
| 45 | * @param {*} opts |
| 46 | */ |
| 47 | constructor(config, opts) { |
| 48 | this.config = Config.create(config) |
| 49 | this.opts = opts |
| 50 | this.testFiles = new Array(0) |
| 51 | this.requiringModules = config.require |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Require modules before codeceptjs running |