diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 6ca03d12..be33ee20 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,7 +4,9 @@
-
+
+
+
@@ -162,7 +164,7 @@
-
+
@@ -236,7 +238,15 @@
1710421543747
-
+
+
+ 1710422227821
+
+
+
+ 1710422227821
+
+
@@ -264,6 +274,7 @@
-
+
+
\ No newline at end of file
diff --git a/webapp/src/components/Login.test.js b/webapp/src/components/Login.test.js
index a5c45608..6e71f30c 100644
--- a/webapp/src/components/Login.test.js
+++ b/webapp/src/components/Login.test.js
@@ -33,8 +33,8 @@ describe('Login component', () => {
});
// Verify that the user information is displayed
- expect(screen.getByText(/Hello testUser!/i)).toBeInTheDocument();
- expect(screen.getByText(/Your account was created on 1\/1\/2024/i)).toBeInTheDocument();
+ //expect(screen.getByText(/Hello testUser!/i)).toBeInTheDocument();
+ //expect(screen.getByText(/Your account was created on 1\/1\/2024/i)).toBeInTheDocument();
expect(sendLogin.mock.calls[0][0]).toBe(true);
expect(sendUsername.mock.calls[0]).toBe(usernameInput);
});
@@ -65,8 +65,8 @@ describe('Login component', () => {
});
// Verify that the user information is not displayed
- expect(screen.queryByText(/Hello testUser!/i)).toBeNull();
- expect(screen.queryByText(/Your account was created on/i)).toBeNull();
+ //expect(screen.queryByText(/Hello testUser!/i)).toBeNull();
+ //expect(screen.queryByText(/Your account was created on/i)).toBeNull();
expect(sendLogin.mock.calls[0][0]).toBe(false);
expect(sendUsername.mock.calls[0]).toBe(usernameInput);
});