neha
neha

Reputation: 21

Is there any way to continue with tests in postman even if any one assert fails?

In a Postman GET request, I have used multiple assertions. However, if any assertion fails, Postman will stops its execution then and there and will throw an error.

Is there any way to prevent this and continue with other assertions even if any one among them fails?

Upvotes: 2

Views: 1699

Answers (1)

keybored
keybored

Reputation: 129

Postman has an open Feature Request on this https://github.com/postmanlabs/postman-app-support/issues/4341

However, you can use command line app newman using the --bail option available with it.

Upvotes: 2

Related Questions