Skip to content

Commit

Permalink
release: v1.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
helloanoop committed Nov 21, 2024
1 parent fb8c54d commit b54e9e7
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/bruno-app/src/components/Sidebar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion packages/bruno-app/src/providers/App/useTelemetry.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const trackStart = () => {
event: 'start',
properties: {
os: platformLib.os.family,
version: '1.34.2'
version: '1.35.0'
}
});
};
Expand Down
2 changes: 1 addition & 1 deletion packages/bruno-electron/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
30 changes: 30 additions & 0 deletions packages/bruno-tests/collection/test/ping.bru
Original file line number Diff line number Diff line change
@@ -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);
});
}

0 comments on commit b54e9e7

Please sign in to comment.