17 lines
491 B
JavaScript
17 lines
491 B
JavaScript
import { test, expect } from 'vitest';
|
|
import { readFileSync } from 'fs-extra';
|
|
import { parse } from 'yaml';
|
|
|
|
import { solution_1 } from './part1.js';
|
|
import { solution_2 } from './part2.js';
|
|
|
|
const input = readFileSync('./input',{ encoding: 'utf8'});
|
|
const solutions = parse( readFileSync('./solutions.yml',{encoding:'utf8'}));
|
|
|
|
test( 'part 1', () => {
|
|
expect( solution_1(input)).toBe(solutions['1']);
|
|
})
|
|
test( 'part 2', () => {
|
|
expect( solution_2(input)).toBe(solutions['2']);
|
|
})
|