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);
	});
});
