expeditaet
Version:
Advent of Code Solutions
13 lines (10 loc) • 337 B
text/typescript
import { describe, expect, it } from 'vitest';
describe('2019 - Day 14 - Part Two', () => {
it('should solve the input', () => {
// const input = await read(packageJson.aoc.year, packageJson.aoc.day)();
expect(0).toEqual(0);
});
it('should be that that the first example resolves to 0', () => {
expect(0).toEqual(0);
});
});