Valid JS-Dev-101 Dumps shared by EduDump.com for Helping Passing JS-Dev-101 Exam! EduDump.com now offer the newest JS-Dev-101 exam dumps, the EduDump.com JS-Dev-101 exam questions have been updated and answers have been corrected get the newest EduDump.com JS-Dev-101 dumps with Test Engine here:
A test searches for: <button class="blue">Checkout</button> But the actual HTML is: <button>Checkout</button> The test fails because it expects a class that no longer exists. What type of test outcome is this?
Correct Answer: A
________________________________________ Comprehensive and Detailed Explanation From Exact Extract JavaScript Knowledge Definitions: False negative → The test reports a failure even though the feature actually works. False positive → The test reports success when it should not. True positive → Correctly identifies something is working. True negative → Correctly identifies something is not working. In this scenario: The checkout button does exist, so the feature works. The test fails incorrectly, because it is checking for the wrong selector. That is the definition of a false negative. ________________________________________ JavaScript Knowledge Reference (text-only) Test outcome classification: false negative = feature works but test fails.