๐ Bug HuntQA Testing & QA Hardโก+35 XP
Test Pollution
Tests pass individually but fail when run together.
๐ Find the bug
1
let data = [];2
test("adds item", () => { data.push(1); expect(data).toHaveLength(1); });3
test("empty check", () => { expect(data).toHaveLength(0); });๐ The bug is on line 1