adventofcode/2022/template/test.js

18 lines
467 B
JavaScript
Raw Normal View History

2022-12-02 16:05:04 +00:00
import { test, expect, describe } from "vitest";
import { expectSolution } from "../01/main.js";
2022-12-07 23:42:05 +00:00
import { solutionPart1, puzzleInput } from "./part1.js";
2022-12-02 16:05:04 +00:00
import { solutionPart2 } from "./part2.js";
describe("part 1", () => {
test.todo("solution", () => {
2022-12-07 23:42:05 +00:00
expectSolution(solutionPart1(puzzleInput)).toEqual("TODO");
2022-12-02 16:05:04 +00:00
});
});
describe("part 2", () => {
test.todo("solution", () => {
2022-12-07 23:42:05 +00:00
expectSolution(solutionPart2(puzzleInput)).toEqual("TODO");
2022-12-02 16:05:04 +00:00
});
});