You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`config`: Optional argument for configuring the runner.
34
+
*`getExtraOptions`: `() => object` used for passing extra options to the runner. It needs to be a serializable object because it will be send to a different Node process.
35
+
30
36
### 2) Create your run file
31
37
32
38
```js
33
-
module.exports= (options) => {
34
-
};
39
+
module.exports=options=> {};
35
40
```
36
41
37
42
### Run File API
38
43
39
44
This file should export a function that receives one parameter with the options
0 commit comments