Adding mock test

This commit is contained in:
Belen Curcio
2016-11-02 09:57:18 -03:00
parent f1469d0dbc
commit 265be1898d
2 changed files with 17 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
/* eslint-env node, mocha */
'use strict';
const expect = require('chai').expect;
describe('Comment', () => {
describe.only('#add', () => {
it('should add a comment', () => {
expect(0).to.be.equal(0);
});
});
});