diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-04-15 19:36:51 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-04-15 19:36:51 +0000 |
| commit | 7e39afa29f1674df4cac51c7894181f55f66aa12 (patch) | |
| tree | 55caff2f4d14e222a2d9c2b63157d28a438a96e7 /packages/e2e_tests/tests/api | |
| parent | d7244978e9e99ca20b99a9f751b1bfef77810e94 (diff) | |
| download | karakeep-7e39afa29f1674df4cac51c7894181f55f66aa12.tar.zst | |
fix: Add password salt to the user table
Diffstat (limited to 'packages/e2e_tests/tests/api')
| -rw-r--r-- | packages/e2e_tests/tests/api/users.test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/e2e_tests/tests/api/users.test.ts b/packages/e2e_tests/tests/api/users.test.ts index 7fe43894..fb33fdca 100644 --- a/packages/e2e_tests/tests/api/users.test.ts +++ b/packages/e2e_tests/tests/api/users.test.ts @@ -25,14 +25,14 @@ describe("Users API", () => { }); }); - it("should response with user info", async () => { + it("should respond with user info", async () => { // Get the user info const { data: userInfo } = await client.GET("/users/me"); expect(userInfo).toBeDefined(); expect(userInfo?.name).toEqual("Test User"); }); - it("should response with user stats", async () => { + it("should respond with user stats", async () => { //////////////////////////////////////////////////////////////////////////////////// // Prepare some data //////////////////////////////////////////////////////////////////////////////////// |
