We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After getting into testing some non-idempodent flows I ended up missing something like this:
expect(foo, 'to yield exchanges satisfying', [{ request: {...}, response: {...} }, { request: {...}, response: {...} }]);
Basically short-hand for
expect(foo, 'to yield exchange satisfying', {...}) .then(function () { return expect(foo, 'to yield excchange satisfying', {...}); });
The text was updated successfully, but these errors were encountered:
Certainly doable, haven't needed it much myself, though. PR welcome :)
Sorry, something went wrong.
No branches or pull requests
After getting into testing some non-idempodent flows I ended up missing something like this:
Basically short-hand for
The text was updated successfully, but these errors were encountered: