Fix testing output

This commit is contained in:
2024-12-02 13:11:48 +01:00
parent 8e1060e6a4
commit b5fd8a73fa
4 changed files with 9 additions and 20 deletions
+1 -7
View File
@@ -1,5 +1,5 @@
import { describe, expect, it } from 'bun:test';
import { solveFirst, solveSecond } from './index.ts';
import { solveFirst } from './index.ts';
describe('2023-25', () => {
it('first', () => {
@@ -18,10 +18,4 @@ rzs: qnr cmg lsr rsh
frs: qnr lhk lsr`;
expect(solveFirst(testInput)).toBe(54);
});
it('second', () => {
// TODO: add second input
const testInput = ``;
// TODO: add second solution
expect(solveSecond(testInput)).toBe(0);
});
});