From 429e14704465f4fa4ba1eb920ed5d5673740ef85 Mon Sep 17 00:00:00 2001 From: Frangeris Peguero Date: Fri, 4 Oct 2024 18:57:52 -0300 Subject: [PATCH] Update test with correct values --- __tests__/service.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/service.spec.ts b/__tests__/service.spec.ts index edf3b56..64cc2cb 100644 --- a/__tests__/service.spec.ts +++ b/__tests__/service.spec.ts @@ -15,7 +15,7 @@ describe("service", () => { describe("build", () => { it("should return empty string if no path is provided", () => { const service = new Service("/resource"); - expect(service["build"]()).toBe(""); + expect(service["build"]()).toBe("/resource"); }); it("should return the path if a string path is provided", () => {