mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-29 07:34:07 +00:00
release: v1.35.0
This commit is contained in:
@@ -184,7 +184,7 @@ const Sidebar = () => {
|
||||
Star
|
||||
</GitHubButton> */}
|
||||
</div>
|
||||
<div className="flex flex-grow items-center justify-end text-xs mr-2">v1.34.2</div>
|
||||
<div className="flex flex-grow items-center justify-end text-xs mr-2">v1.35.0</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -60,7 +60,7 @@ const trackStart = () => {
|
||||
event: 'start',
|
||||
properties: {
|
||||
os: platformLib.os.family,
|
||||
version: '1.34.2'
|
||||
version: '1.35.0'
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "v1.34.2",
|
||||
"version": "v1.35.0",
|
||||
"name": "bruno",
|
||||
"description": "Opensource API Client for Exploring and Testing APIs",
|
||||
"homepage": "https://www.usebruno.com",
|
||||
|
||||
30
packages/bruno-tests/collection/test/ping.bru
Normal file
30
packages/bruno-tests/collection/test/ping.bru
Normal file
@@ -0,0 +1,30 @@
|
||||
meta {
|
||||
name: ping
|
||||
type: http
|
||||
seq: 1
|
||||
}
|
||||
|
||||
get {
|
||||
url: https://www.usebruno.com/features-product.svg
|
||||
body: none
|
||||
auth: none
|
||||
}
|
||||
|
||||
script:pre-request {
|
||||
const { expect } = require("chai");
|
||||
|
||||
expect(1).to.equal(1);
|
||||
}
|
||||
|
||||
script:post-response {
|
||||
// const { expect } = require("chai");
|
||||
//
|
||||
// expect(1).to.equal(1);
|
||||
}
|
||||
|
||||
tests {
|
||||
test("res.status should be 200", function() {
|
||||
const data = res.getBody();
|
||||
expect(res.getStatus()).to.equal(200);
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user