Quality Assurance and Testing with Chai - Learn How JavaScript Assertions Work

Tell us what’s happening:

My first task is to correct method for the first assertion and second assertion to either - isNull or isNotNull which i have done commit and pushed but i’m unable to pass the task kindly help out

Describe your issue in detail here.

// #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');
});

###Your project link(s)

Your browser information:

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

Challenge Information:

Quality Assurance and Testing with Chai - Learn How JavaScript Assertions Work

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.

you need to give a live app url to the tester, this can be even your localhost if you are coding locally, or the url generated by gitpod

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