Literally stuck on question 1. Got the correct assertions, as checked against the hint. But when I paste the repository into the solution which I’ve committed and click on completed challenge, the test don’t pass? I’ve also tried it on repl.it and get the same.
// running tests All tests should pass. You should choose the correct method for the first assertion -
isNull
vs.
isNotNull
. You should choose the correct method for the second assertion -
isNull
vs.
isNotNull
. // tests completed
code:
suite(‘Unit Tests’, function () {
suite(‘Basic Assertions’, function () {
// #1
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’);
});