feat: 유닛테스트 준비

This commit is contained in:
2022-03-03 00:16:01 +09:00
parent a289b192e4
commit c68a428bf5
5 changed files with 24 additions and 4 deletions
+7
View File
@@ -0,0 +1,7 @@
import { assert } from 'chai';
describe('hello', ()=>{
it('hello1', ()=>{
assert.equal(2, 1+1);
});
});