Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Code Block
languagejs
titleTerminating 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);
}