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
Just as there is a befores implementation it would be nice to have an afters function as I am trying to wrap the library in a promise and resolve it at the end of the function.
Code example
return new Promise(function(resolve, reject) {
suite.discuss('When authenticating')
.discuss('with no username or password')
.after(resolve) // this part
.next();
});
The text was updated successfully, but these errors were encountered:
Description
Just as there is a befores implementation it would be nice to have an afters function as I am trying to wrap the library in a promise and resolve it at the end of the function.
Code example
The text was updated successfully, but these errors were encountered: