Remove flaky header size test from getSize

Removed test for header size from getSize tests.
This commit is contained in:
Anoop M D
2025-09-12 01:05:24 +05:30
committed by GitHub
parent cfec4a9e1b
commit 56629663dc

View File

@@ -19,11 +19,6 @@ script:post-response {
}
tests {
test("test header size", function() {
const bodySize = res.getSize().header;
expect(bodySize === 305).to.be.true;
});
test("test total size", function() {
const sizes = res.getSize();
expect(sizes.total).to.equal(sizes.header + sizes.body);