expeditaet
Version:
Advent of Code Solutions
11 lines (9 loc) • 351 B
text/typescript
// import { read } from '@alexaegis/advent-of-code-lib';
// import { runner } from './p2.js';
import { describe, it } from 'vitest';
describe('2019 - Day 11 - Part Two', () => {
// TODO: ASCII ART PARSER AGALRGJE
it('should solve the input', async () => {
// expect(await p2((await read(year, day)()).input)).toEqual(results.two.input);
});
});