Testing Demo with Mocha success
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