mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 20:53:07 +08:00
13 lines
233 B
JavaScript
13 lines
233 B
JavaScript
/* 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);
|
|
});
|
|
});
|
|
});
|