diff options
author | Lizzy Hunt <lizzy.hunt@usu.edu> | 2023-12-01 16:05:44 -0700 |
---|---|---|
committer | Lizzy Hunt <lizzy.hunt@usu.edu> | 2023-12-01 16:05:44 -0700 |
commit | 888cd821acc7582255320e0ddbddd2495e505cd4 (patch) | |
tree | 430ee27e7ee7476be5db930c0a93f61c60934c46 /template/example.test.ts | |
parent | cdb12dbc28cc441745bad55e384494bc8942586a (diff) | |
download | aoc-888cd821acc7582255320e0ddbddd2495e505cd4.tar.gz aoc-888cd821acc7582255320e0ddbddd2495e505cd4.zip |
updates and test w/ day 01 2021
Diffstat (limited to 'template/example.test.ts')
-rw-r--r-- | template/example.test.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/template/example.test.ts b/template/example.test.ts index f3e80eb..a0522cc 100644 --- a/template/example.test.ts +++ b/template/example.test.ts @@ -2,7 +2,7 @@ import { expect, test } from "bun:test"; import { main as part1 } from "./part_1"; import { main as part2 } from "./part_2"; -// const example = ``; +// const example = ``.split("\n");; const example = `1 2 3 4 5`.split(" "); test("part1", async () => { @@ -11,8 +11,8 @@ test("part1", async () => { expect(res).toEqual(answer); }); -test("part2", async () => { - const answer = 5 + 5; - const res = await part2(example); - expect(res).toEqual(answer); -}); +//test("part2", async () => { +// const answer = 5 + 5; +// const res = await part2(example); +// expect(res).toEqual(answer); +//}); |