aboutsummaryrefslogtreecommitdiffstats
path: root/packages/e2e_tests/tests/api/users.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/e2e_tests/tests/api/users.test.ts')
-rw-r--r--packages/e2e_tests/tests/api/users.test.ts4
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
////////////////////////////////////////////////////////////////////////////////////