[backend-api] Add Test Case Setting
This commit is contained in:
9
backend-api/jest.config.json
Normal file
9
backend-api/jest.config.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"moduleFileExtensions": ["js", "json", "ts"],
|
||||
"rootDir": ".",
|
||||
"testEnvironment": "node",
|
||||
"testRegex": ".*spec.ts$",
|
||||
"transform": {
|
||||
"^.+\\.(t|j)s$": "ts-jest"
|
||||
}
|
||||
}
|
||||
5
backend-api/test/QTT-001/QTT-001-01.spec.ts
Normal file
5
backend-api/test/QTT-001/QTT-001-01.spec.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
describe('MySQL 연동 확인', () => {
|
||||
it('test', () => {
|
||||
return expect(1).toBe(1);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user