Files
aoc/template/index.test.ts
T
2024-12-01 14:31:59 +01:00

18 lines
456 B
TypeScript

import { describe, expect, it } from 'bun:test';
import { solveFirst, solveSecond } from './index.ts';
describe('YYYY-DD', () => {
it('first', () => {
// TODO: add first input
const testInput = ``;
// TODO: add first solution
expect(solveFirst(testInput)).toBe(0);
});
it('second', () => {
// TODO: add second input
const testInput = ``;
// TODO: add second solution
expect(solveSecond(testInput)).toBe(0);
});
});