1import { describe, expect, it } from 'vitest'; 2 3import { Game } from './game'; 4 5describe('game test', () => { 6 it('returns true when a valid word is entered', () => { 7 const game = new Game(); 8 expect(game.enter('zorro'.split(''))).toBe(true); 9 }); 10});