summaryrefslogtreecommitdiff
path: root/tests/add.test.js
blob: 1463362f142f1d3c9778e80f3c80da4e0053d328 (plain)
1
2
3
4
5
6
7
8
const assert = require('assert');
const add = require('./add');

describe("Demo", () => {
  it("should add correctly", () => {
    assert.equal(add(1, 1), 2);
  });
});