9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
import { expect } from 'chai';
|
|
|
|
describe('sample', () => {
|
|
it('should test all critical logic of the library', () => {
|
|
const it = true;
|
|
expect(it).to.be.eq(true);
|
|
});
|
|
});
|