fork of hey-api/openapi-ts because I need some additional things
at main 10 lines 261 B view raw
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});