[backend-api] Add Test Case Setting

This commit is contained in:
Dosun Yun
2022-09-26 18:08:41 +09:00
parent 23c242afb9
commit a232188bec
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{
"moduleFileExtensions": ["js", "json", "ts"],
"rootDir": ".",
"testEnvironment": "node",
"testRegex": ".*spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
}

View File

@@ -0,0 +1,5 @@
describe('MySQL 연동 확인', () => {
it('test', () => {
return expect(1).toBe(1);
});
});