feat: 유닛테스트 준비

This commit is contained in:
2022-03-03 00:16:01 +09:00
parent f522a6cefd
commit ed28cabb16
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);
});
});