expeditaet
Version:
Advent of Code Solutions
26 lines (21 loc) • 971 B
text/typescript
import { loadTaskResources } from '@alexaegis/advent-of-code-lib';
import { describe, expect, it } from 'vitest';
import packageJson from '../package.json';
import { p1 } from './p1.js';
describe('2019 - Day 9 - Part One', () => {
it('should resolve to 3507134798 when using the input', async () => {
const resources = await loadTaskResources(packageJson.aoc);
expect(p1(resources.input)).toEqual('3507134798');
});
it('should be that that both the first examples resolves to itself', () => {
expect(p1('109,1,204,-1,1001,100,1,100,1008,100,16,101,1006,101,0,99')).toEqual(
'109,1,204,-1,1001,100,1,100,1008,100,16,101,1006,101,0,99',
);
});
it('should be that that both the second examples resolves to 0', () => {
expect(p1('1102,34915192,34915192,7,4,7,99,0')).toEqual('1219070632396864');
});
it('should be that that both the second examples resolves to 0', () => {
expect(p1('104,1125899906842624,99')).toEqual('1125899906842624');
});
});