Remove body size test from getSize tests

This commit is contained in:
Anoop M D
2025-09-08 22:36:22 +05:30
committed by GitHub
parent be730a8c4f
commit 03abbc585f

View File

@@ -19,12 +19,6 @@ script:post-response {
}
tests {
test("test body size", function() {
const bodySize = res.getSize().body;
// 1MB = 1024*1024 = 1048576
expect(bodySize > 1048576).to.be.true;
});
test("test header size", function() {
const bodySize = res.getSize().header;
expect(bodySize === 305).to.be.true;