Skip to content

Commit ee9f233

Browse files
committed
Update auth.test.ts
1 parent 5dc833e commit ee9f233

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

course-matrix/backend/__tests__/auth.test.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import app from "../src/index";
55
describe("Authentication API", () => {
66
// The unit tests below are currently commented out because they require a database connection.
77
// They will be uncommented out once all the necessary mocks are in place.
8+
89
// describe('POST /auth/login', () => {
910
// it('should return 200 and a token for valid credentials', async () => {
1011
// const response = await request(app)
@@ -74,4 +75,7 @@ describe("Authentication API", () => {
7475
// expect(response.body).toHaveProperty('error', 'Unauthorized');
7576
// });
7677
// });
78+
it ("template test", () => {
79+
expect(2 + 3).toEqual(5);
80+
});
7781
});

0 commit comments

Comments
 (0)