Skip to main content
๐Ÿ› Bug HuntQA Testing & QA Easyโšก+10 XP

Asserting Wrong Thing

This test always passes even with a bug.

๐Ÿ› Find the bug
1test('adds numbers', () => {
2 const result = add(2, 3);
3 expect(result);
4});
๐Ÿ› The bug is on line 3

๐Ÿ”ง Select the correct fix: