I am new to freecodecamp and I wanted to do the first assignment of the “quality assurance” course. I solved the problem in “repl” and copied my project url in repl and pasted in the " url section" and clicked on " i’ve completed this challenge" but the tests dont pass.
I have also checked the right answer to the question from the “hint” button and I’m sure that what I did is right.
Am I doing something wrong here?
My code so far
test(’#isNull, #isNotNull’, function(){
assert.isNull(null, ‘this is an optional error description - e.g. null is null’);
assert.isNotNull( 1, ‘1 is not null’);
});
Link to the challenge: