We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dc833e commit ee9f233Copy full SHA for ee9f233
course-matrix/backend/__tests__/auth.test.ts
@@ -5,6 +5,7 @@ import app from "../src/index";
5
describe("Authentication API", () => {
6
// The unit tests below are currently commented out because they require a database connection.
7
// They will be uncommented out once all the necessary mocks are in place.
8
+
9
// describe('POST /auth/login', () => {
10
// it('should return 200 and a token for valid credentials', async () => {
11
// const response = await request(app)
@@ -74,4 +75,7 @@ describe("Authentication API", () => {
74
75
// expect(response.body).toHaveProperty('error', 'Unauthorized');
76
// });
77
78
+ it ("template test", () => {
79
+ expect(2 + 3).toEqual(5);
80
+ });
81
});
0 commit comments