* Adds an async function that runs before the plugins are run. * @param task The function to run before start. * @return Returns the current FrameworkConfiguration instance.
(task: Function)
| 263 | * @return Returns the current FrameworkConfiguration instance. |
| 264 | */ |
| 265 | preTask(task: Function): FrameworkConfiguration { |
| 266 | assertProcessed(this); |
| 267 | this.preTasks.push(task); |
| 268 | return this; |
| 269 | } |
| 270 | |
| 271 | /** |
| 272 | * Adds an async function that runs after the plugins are run. |
no test coverage detected