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');
	});
});
