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
{{ message }}
This repository was archived by the owner on Mar 10, 2020. It is now read-only.
The only option will now accept an object for onlying a specific test.
Previously you could only do this to only run a specific test:
```js
{
only: ['should test a thing']
}
```
Now you can do this:
```js
{
only: [{
name: 'should test a thing',
reason: 'because development' // optional!
}]
}
```
License: MIT
Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
0 commit comments