How to run tests to show their results in the repl console

Tell us what’s happening:
Hello,
right now I am trying to solve the Metric-imperial-converter on repl.it. Everything is doing fine except of tests. I cannot pass the project because there is some trouble with my tests and I can not find out which test is still failing. Can you please tell me how I can somehow log results of the tests in the console to see where the problem is? Here is some of my code. According to freecodedamp the tests arent complete and passing and I do not know why. Please help.

Thank you.

Your code so far
const chaiHttp = require(‘chai-http’);
const chai = require(‘chai’);
let assert = chai.assert;
const server = require(’…/server’);

chai.use(chaiHttp);

suite(‘Functional Tests’, function() {

suite(‘Routing Tests’, function() {

suite('GET /api/convert => conversion object', function() {
  
  test('Convert 10L (valid input)', function(done) {
   chai.request(server)
    .get('/api/convert')
    .query({input: '10L'})
    .end(function(err, res){
      assert.equal(res.status, 200);
      assert.equal(res.body.initNum, 10);
      assert.equal(res.body.initUnit, 'L');
      assert.approximately(res.body.returnNum, 2.64172, 0.1);
      assert.equal(res.body.returnUnit, 'gal');
      done();
    });
  });
  
  test('Convert 32g (invalid input unit)', function(done) {
    chai.request(server)
    .get('/api/convert')
    .query({input: '32g'})
    .end(function(err,res) {
      assert.equal(res.status, 200);
      assert.equal(res.body.initNum, 32);
      assert.equal(res.body.initUnit, undefined);
      done();
    });
   
  });
  
  test('Convert 3/7.2/4kg (invalid number)', function(done) {
    chai.request(server)
        .get('/api/convert')
        .query({input: '3/7.2/4kg'})
        .end(function(err,res) {
          assert.equal(res.status, 200);
          assert.equal(res.body.initNum, undefined);
          done();
        });
  });  
  
  test('Convert 3/7.2/4kilomegagram (invalid number and unit)', function(done) {
        chai.request(server)
        .get('/api/convert')
        .query({input: '3/7.2/4kilomegagram'})
        .end(function(err,res) {
          assert.equal(res.status, 200);
          assert.equal(res.body.initNum, undefined);
          assert.equal(res.body.initUnit,undefined);
          done();
        });
  });
  
  test('Convert kg (no number)', function(done) {
     chai.request(server)
        .get('/api/convert')
        .query({input: 'kg'})
        .end(function(err,res) {
          assert.equal(res.status, 200);
          assert.equal(res.body.initNum, 1);
          assert.equal(res.body.initUnit,'kg');
          assert.approximately(res.body.returnNum, 2.20462, 0.1);
          assert.equal(res.body.returnUnit, 'lbs');
          done();
        });
  });
  
});

});

});

Your browser information:

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

Challenge: Metric-Imperial Converter

Link to the challenge:

Maybe this helps?