mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-15 11:51:30 +00:00
18 lines
219 B
Plaintext
18 lines
219 B
Plaintext
meta {
|
|
name: test-request
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
get {
|
|
url: {{host}}/api/echo
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
tests {
|
|
test("should get 200 response", function() {
|
|
expect(res.getStatus()).to.equal(200);
|
|
});
|
|
}
|