From b0bb95313fabbc7e787a5c9f56d610a678675337 Mon Sep 17 00:00:00 2001 From: scarf Date: Mon, 6 Nov 2023 19:59:14 +0900 Subject: [PATCH] =?UTF-8?q?test:=20=20=ED=83=80=EC=9E=85=EC=8A=A4=ED=81=AC?= =?UTF-8?q?=EB=A6=BD=ED=8A=B8=20=EB=8F=99=EC=9E=91=20=EC=97=AC=EB=B6=80=20?= =?UTF-8?q?=EA=B2=80=EC=82=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/test.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/test.test.ts b/src/test/test.test.ts index 32dd470..38f1d9d 100644 --- a/src/test/test.test.ts +++ b/src/test/test.test.ts @@ -1,6 +1,8 @@ import { deepEqual } from "node:assert/strict"; import test from "node:test"; +const add = (a: number, b: number) => a + b; + test("hello", () => { - deepEqual(1, 1); + deepEqual(add(1, 2), 3); });