18 lines
456 B
TypeScript
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);
|
|
});
|
|
});
|