From 6c1a8aa0bbfe62befd3c730a3e3f41414520177d Mon Sep 17 00:00:00 2001 From: Sunyoung Date: Thu, 5 Feb 2026 10:10:17 +0900 Subject: [PATCH 1/2] =?UTF-8?q?test=EB=B8=8C=EB=9E=9C=EC=B9=98=EC=97=90?= =?UTF-8?q?=EC=84=9C=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EC=8B=A4=ED=8C=A8=20?= =?UTF-8?q?=EC=BC=80=EC=9D=B4=EC=8A=A4=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.test.ts b/src/index.test.ts index 17131e1..7691c1e 100644 --- a/src/index.test.ts +++ b/src/index.test.ts @@ -1,7 +1,7 @@ import { sum } from "./index"; test("1 + 2는 3이어야 합니다", () => { - expect(sum(1, 2)).toBe(3); + // expect(sum(1, 2)).toBe(3); // 테스트 실패 예정 - // expect(sum(1, 2)).toBe(5); + expect(sum(1, 2)).toBe(5); }); From 59a6ad1199b4e80cce0b01928d274d4487112ba3 Mon Sep 17 00:00:00 2001 From: Sunyoung Date: Thu, 5 Feb 2026 10:40:32 +0900 Subject: [PATCH 2/2] =?UTF-8?q?test=EB=B8=8C=EB=9E=9C=EC=B9=98=EC=97=90?= =?UTF-8?q?=EC=84=9C=20=EC=98=AC=EB=B0=94=EB=A5=B4=EA=B2=8C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.test.ts b/src/index.test.ts index 7691c1e..5b15696 100644 --- a/src/index.test.ts +++ b/src/index.test.ts @@ -1,7 +1,7 @@ import { sum } from "./index"; test("1 + 2는 3이어야 합니다", () => { - // expect(sum(1, 2)).toBe(3); + expect(sum(1, 2)).toBe(3); // 테스트 실패 예정 - expect(sum(1, 2)).toBe(5); + //expect(sum(1, 2)).toBe(5); });