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
I've thought that maybe if you have multiple fixtures that match an ajax request:
fixture({url: "foo"}, handler) fixture({method: "get", url: "foo", handler)
Perhaps we could sequence them? It would be very nice to do:
fixture({}, function(req, response, reqHandler, matcher, next){ setTimeout(next, 2000) })
as a way of slowing everything up.
One possible problem with this, should we make it possible to remove multiple fixtures at once? Should fixture({},null) remove all fixtures?
fixture({},null)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've thought that maybe if you have multiple fixtures that match an ajax request:
Perhaps we could sequence them? It would be very nice to do:
as a way of slowing everything up.
One possible problem with this, should we make it possible to remove multiple fixtures at once? Should
fixture({},null)
remove all fixtures?The text was updated successfully, but these errors were encountered: