Testing Demo with Mocha success
examples/testing-demo/test/first.js
var assert = require('assert'); const calc = require("../mycalc.js") describe('Array', function() { describe('calc', function() { it('should be ok', function() { assert.equal(calc.add(2, 2), 4); }); }); });
./node_modules/mocha/bin/mocha.js test/first.js