Skip to content

Commit 6133836

Browse files
committed
rename for unit test files
1 parent 1aeca52 commit 6133836

File tree

10 files changed

+2
-2
lines changed

10 files changed

+2
-2
lines changed
File renamed without changes.
File renamed without changes.

tests/routes/v1/login/integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const bcryptCompareSpy = jest.spyOn(bcrypt, 'compare');
1616
export const userFindByEmailSpy = jest.spyOn(UserRepo, 'findByEmail');
1717
export const keystoreCreateSpy = jest.spyOn(KeystoreRepo, 'create');
1818

19-
describe('Integration Test: Login basic route', () => {
19+
describe('Login basic route', () => {
2020

2121
const endpoint = '/v1/login/basic';
2222
const request = supertest(app);

tests/routes/v1/login/unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
import supertest from 'supertest';
1010
import app from '../../../../src/app';
1111

12-
describe('Unit Test: Login basic route', () => {
12+
describe('Login basic route', () => {
1313

1414
const endpoint = '/v1/login/basic';
1515
const request = supertest(app);

0 commit comments

Comments
 (0)