From a60b0eadd11382a7ffa1802294e889f0a1d5e3e3 Mon Sep 17 00:00:00 2001 From: Christian Garza <16683618+C-Garza@users.noreply.github.com> Date: Fri, 8 Oct 2021 20:05:25 -0700 Subject: [PATCH 1/9] Modify start up message --- auth/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/src/index.ts b/auth/src/index.ts index 9274a41..462b0aa 100644 --- a/auth/src/index.ts +++ b/auth/src/index.ts @@ -13,7 +13,7 @@ const start = async () => { console.log("Connected to MongoDB"); app.listen(3000, () => { - console.log("Listening on port 3000"); + console.log("Listening on port: 3000"); }); }; From f6f217bc64fb726b7de5041cfd8ace85873abcd5 Mon Sep 17 00:00:00 2001 From: Christian Garza <16683618+C-Garza@users.noreply.github.com> Date: Fri, 8 Oct 2021 20:15:28 -0700 Subject: [PATCH 2/9] Make breaking change to test actions --- auth/src/routes/__test__/current-user.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/src/routes/__test__/current-user.test.ts b/auth/src/routes/__test__/current-user.test.ts index dd86906..bf46e66 100644 --- a/auth/src/routes/__test__/current-user.test.ts +++ b/auth/src/routes/__test__/current-user.test.ts @@ -8,7 +8,7 @@ it("responds with details about the current user", async () => { .get("/api/users/currentuser") .set("Cookie", cookie) .send() - .expect(200); + .expect(400); expect(response.body.currentUser.email).toEqual("test@test.com"); }); From 36713ec1f11d5eb53aabeafe0ed0bb3afbd8b0c9 Mon Sep 17 00:00:00 2001 From: Christian Garza <16683618+C-Garza@users.noreply.github.com> Date: Fri, 8 Oct 2021 20:17:53 -0700 Subject: [PATCH 3/9] Revert breaking change --- auth/src/routes/__test__/current-user.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/src/routes/__test__/current-user.test.ts b/auth/src/routes/__test__/current-user.test.ts index bf46e66..dd86906 100644 --- a/auth/src/routes/__test__/current-user.test.ts +++ b/auth/src/routes/__test__/current-user.test.ts @@ -8,7 +8,7 @@ it("responds with details about the current user", async () => { .get("/api/users/currentuser") .set("Cookie", cookie) .send() - .expect(400); + .expect(200); expect(response.body.currentUser.email).toEqual("test@test.com"); }); From 27657e47fa0f5e5c04230d3fbc6b08408277310c Mon Sep 17 00:00:00 2001 From: Christian Garza <16683618+C-Garza@users.noreply.github.com> Date: Fri, 8 Oct 2021 20:29:26 -0700 Subject: [PATCH 4/9] Modify startup message --- orders/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orders/src/index.ts b/orders/src/index.ts index 8c9c887..bc392b4 100644 --- a/orders/src/index.ts +++ b/orders/src/index.ts @@ -44,7 +44,7 @@ const start = async () => { console.log("Connected to MongoDB"); app.listen(3000, () => { - console.log("Listening on port 3000"); + console.log("Listening on port: 3000"); }); }; From 46dfa01e1cb9d23c03f59a366a276031c0701a10 Mon Sep 17 00:00:00 2001 From: Christian Garza <16683618+C-Garza@users.noreply.github.com> Date: Fri, 8 Oct 2021 20:58:55 -0700 Subject: [PATCH 5/9] Modify startup message --- tickets/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tickets/src/index.ts b/tickets/src/index.ts index 327ccf3..de9e226 100644 --- a/tickets/src/index.ts +++ b/tickets/src/index.ts @@ -38,7 +38,7 @@ const start = async () => { console.log("Connected to MongoDB"); app.listen(3000, () => { - console.log("Listening on port 3000"); + console.log("Listening on port: 3000"); }); }; From 6fb671f57b00c09e9e4786a9479cbb43fd5ca2ba Mon Sep 17 00:00:00 2001 From: Christian Garza <16683618+C-Garza@users.noreply.github.com> Date: Fri, 8 Oct 2021 21:10:26 -0700 Subject: [PATCH 6/9] Modify startup message --- auth/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/src/index.ts b/auth/src/index.ts index 462b0aa..9274a41 100644 --- a/auth/src/index.ts +++ b/auth/src/index.ts @@ -13,7 +13,7 @@ const start = async () => { console.log("Connected to MongoDB"); app.listen(3000, () => { - console.log("Listening on port: 3000"); + console.log("Listening on port 3000"); }); }; From 8f60ea9a506101b14ef3e5ffa1c44c13ca6cc342 Mon Sep 17 00:00:00 2001 From: Christian Garza <16683618+C-Garza@users.noreply.github.com> Date: Fri, 8 Oct 2021 21:12:49 -0700 Subject: [PATCH 7/9] Modify startup message --- auth/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/src/index.ts b/auth/src/index.ts index 9274a41..462b0aa 100644 --- a/auth/src/index.ts +++ b/auth/src/index.ts @@ -13,7 +13,7 @@ const start = async () => { console.log("Connected to MongoDB"); app.listen(3000, () => { - console.log("Listening on port 3000"); + console.log("Listening on port: 3000"); }); }; From 0a2ff1a6e611da4cf0b8a0a4ff14e6829ac9cb6f Mon Sep 17 00:00:00 2001 From: Christian Garza <16683618+C-Garza@users.noreply.github.com> Date: Fri, 8 Oct 2021 21:17:02 -0700 Subject: [PATCH 8/9] Modify startup message --- auth/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/src/index.ts b/auth/src/index.ts index 462b0aa..9274a41 100644 --- a/auth/src/index.ts +++ b/auth/src/index.ts @@ -13,7 +13,7 @@ const start = async () => { console.log("Connected to MongoDB"); app.listen(3000, () => { - console.log("Listening on port: 3000"); + console.log("Listening on port 3000"); }); }; From 6a9f17518847d205e622aa6bec0052132921e6d8 Mon Sep 17 00:00:00 2001 From: Christian Garza <16683618+C-Garza@users.noreply.github.com> Date: Fri, 8 Oct 2021 21:26:45 -0700 Subject: [PATCH 9/9] Update startup message --- orders/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orders/src/index.ts b/orders/src/index.ts index bc392b4..8c9c887 100644 --- a/orders/src/index.ts +++ b/orders/src/index.ts @@ -44,7 +44,7 @@ const start = async () => { console.log("Connected to MongoDB"); app.listen(3000, () => { - console.log("Listening on port: 3000"); + console.log("Listening on port 3000"); }); };