adventofcode/2022/16/test.js

30 lines
719 B
JavaScript

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( "input", ()=> {
expect(sample).toMatchObject({AA: {
exists: [
'DD', 'II', 'BB',
],
flow: 0,
}})
} )
test.only("sample", () => {
expectSolution(part1(sample)).toEqual(1651);
});
test.todo("solution", () => {
expectSolution(part1(puzzleInput)).toEqual("TODO");
});
});
describe("part 2", () => {
test.todo("solution", () => {
expectSolution(part2(puzzleInput)).toEqual("TODO");
});
});