7 lines
120 B
TypeScript
7 lines
120 B
TypeScript
import { assert } from 'chai';
|
|
|
|
describe('hello', ()=>{
|
|
it('hello1', ()=>{
|
|
assert.equal(2, 1+1);
|
|
});
|
|
}); |