You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bru command will treat "collection.bru" as a request in a collection while it is actually a setting file for a request collection.
That results in a request is sent according to the specifications in the "collection.bru" file, which will fail eventually as there is no url settings inside it.
sample "collection.bru"
test("Response status code is 200", function () {
expect(res.getStatus()).to.equal(200);
});
test("Response time is less than 10s", function () {
expect(res.getResponseTime()).to.be.below(10000);
});
The text was updated successfully, but these errors were encountered:
bru
command will treat "collection.bru" as a request in a collection while it is actually a setting file for a request collection.That results in a request is sent according to the specifications in the "collection.bru" file, which will fail eventually as there is no url settings inside it.
sample "collection.bru"
The text was updated successfully, but these errors were encountered: