mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-01 20:33:28 +01:00
24 lines
323 B
Plaintext
24 lines
323 B
Plaintext
meta {
|
|
name: bruno
|
|
type: http
|
|
seq: 1
|
|
}
|
|
|
|
get {
|
|
url: https://www.usebruno.com
|
|
body: none
|
|
auth: none
|
|
}
|
|
|
|
assert {
|
|
res.status: eq 200
|
|
}
|
|
|
|
tests {
|
|
test("should return parsed xml", function() {
|
|
const headers = res.getHeaders();
|
|
expect(headers['content-type']).to.eql("text/html; charset=utf-8");
|
|
});
|
|
|
|
}
|