Quality Assurance and Testing with Chai - Use Assert.isOK and Assert.isNotOK

Tell us what’s happening:
Describe your issue in detail here.
// #3
test(‘#isOk, #isNotOk’, function () {
assert.isNotOk(null, ‘null is falsey’);
assert.isOk(“I’m truthy”, ‘A string is truthy’);
assert.isOk(true, ‘true is truthy’);
});

my current code is not passing. Please help.
Your project link(s)

solution: https://replit.com/@princessregall1/qualityassurance-chai

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

Challenge: Quality Assurance and Testing with Chai - Use Assert.isOK and Assert.isNotOK

Link to the challenge:

when you run it in FCC does it say test time out?

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.