fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/use-query-options 8 lines 213 B view raw
1import { Game } from './game'; 2 3describe('game test', () => { 4 it('returns true when a valid word is entered', () => { 5 const game = new Game(); 6 expect(game.enter('zorro'.split(''))).toBe(true); 7 }); 8});