expeditaet
Version:
Advent of Code Solutions
14 lines (11 loc) • 318 B
text/typescript
import { describe, expect, it } from 'vitest';
describe('2018 - Day 10 - Part One', () => {
it('should solve the input', () => {
// Output text is not parsed
expect('KBJHEZCB').toEqual('KBJHEZCB');
});
it('should solve the input', () => {
// Output text is not parsed
expect('HI').toEqual('HI');
});
});