Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Don't Allow a Collection to Continue if a Required Resources Does Not Exist or is Unusable

Terminating test runs
tests["Status code is 201/202"] = responseCode.code === 201 || responseCode.code === 202;

if (responseCode.code == 201 || responseCode.code == 202) {
    //
    // do stuff
    //
}
else {
    tests["Scrap this run:  Domain not created"] = true === false;
    postman.setNextRequest(null);
}
  • No labels