Compare commits

...

1 Commits

Author SHA1 Message Date
Anoop M D
b54e9e705b release: v1.35.0 2024-11-21 21:54:08 +05:30
4 changed files with 33 additions and 3 deletions

View File

@@ -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>

View File

@@ -60,7 +60,7 @@ const trackStart = () => {
event: 'start',
properties: {
os: platformLib.os.family,
version: '1.34.2'
version: '1.35.0'
}
});
};

View File

@@ -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",

View 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);
});
}