21 lines
475 B
Plaintext
21 lines
475 B
Plaintext
---
|
|
to: 2022/<%= day %>/test.js
|
|
---
|
|
import { test, expect, describe } from "vitest";
|
|
|
|
import { expectSolution } from "../01/main.js";
|
|
import part1, { sample, puzzleInput } from "./part1.js";
|
|
import part2 from "./part2.js";
|
|
|
|
describe("part 1", () => {
|
|
test.todo("solution", () => {
|
|
expectSolution(part1(puzzleInput)).toEqual("TODO");
|
|
});
|
|
});
|
|
|
|
describe("part 2", () => {
|
|
test.todo("solution", () => {
|
|
expectSolution(part2(puzzleInput)).toEqual("TODO");
|
|
});
|
|
});
|