mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 20:03:00 +08:00
10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
const expect = require('chai').expect;
|
|
|
|
describe('Comment', () => {
|
|
describe('#add', () => {
|
|
it('should add a comment', () => {
|
|
expect(0).to.be.equal(0);
|
|
});
|
|
});
|
|
});
|