29 lines
886 B
TypeScript
29 lines
886 B
TypeScript
|
import path from "path";
|
||
|
|
||
|
import { readlines } from "../../_utils";
|
||
|
import { part1_solver, part2_solver } from "./solution";
|
||
|
|
||
|
describe("day 1: trebuchet, pt 1", () => {
|
||
|
test("sample input", async () => {
|
||
|
const sample = await readlines(path.resolve(__dirname, "./sample.txt"));
|
||
|
expect(part1_solver(sample)).toBe(142);
|
||
|
});
|
||
|
|
||
|
test("submission input", async () => {
|
||
|
const input = await readlines(path.resolve(__dirname, "./input.txt"));
|
||
|
expect(part1_solver(input)).toBe(55090);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe("day 1: trebuchet, pt 2", () => {
|
||
|
test("sample input", async () => {
|
||
|
const sample = await readlines(path.resolve(__dirname, "./sample2.txt"));
|
||
|
expect(part2_solver(sample)).toBe(281);
|
||
|
});
|
||
|
|
||
|
test("submission input", async () => {
|
||
|
const input = await readlines(path.resolve(__dirname, "./input.txt"));
|
||
|
expect(part2_solver(input)).toBe(54845);
|
||
|
});
|
||
|
});
|