Skip to content

Commit

Permalink
test: 타입스크립트 동작 여부 검사
Browse files Browse the repository at this point in the history
  • Loading branch information
scarf005 committed Nov 6, 2023
1 parent 2abd382 commit b0bb953
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test/test.test.ts
Original file line number Diff line number Diff line change
@@ -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);
});

0 comments on commit b0bb953

Please sign in to comment.