diff --git a/packages/app-node-express/test/user.test.ts b/packages/app-node-express/test/user.test.ts index abda0ff7..ff1113e8 100644 --- a/packages/app-node-express/test/user.test.ts +++ b/packages/app-node-express/test/user.test.ts @@ -6,6 +6,7 @@ describe("user", () => { describe("given the user does not exist", () => { it("should return a 404", async () => { const nonExistingUsername = "usernameWhichShouldFail"; + throw new Error("Test"); await supertest(globalThis.expressApp) .get(`/users/findOneByUsername?username=${nonExistingUsername}`) .expect(404);