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

Tell us what’s happening:

Where do I find this solution link if I am making the changes locally? I tried to go through the terminal. This is quite the challenge to figure out how to navigate. I pushed it to my GitHub from the terminal, but where is the solution link then?? I tried to commit the changes on gitpod, but it wouldn’t go through. I have no clue what to do.

###Your project link(s)

const chai = require(‘chai’);
const assert = chai.assert;

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’);
});

solution: file:

Your browser information: Safari

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15

Challenge Information:

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

the solution link is the live app link, if you are coding locally you can make the app live in your localhost and give that link to be the link to be tested

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