8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
|
const expect = require('chai').expect;
|
||
|
|
||
|
describe('Basic Mocha Setup', function () {
|
||
|
it('adds two and two and gets four', function () {
|
||
|
expect(2 + 2).to.equal(4);
|
||
|
});
|
||
|
});
|