/* 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); }); }); });