Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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