UNPKG

tmemory

Version:

A terminal-based Memory card game built with React Ink. Features multiple grid sizes, AI opponent, and high scores.

9 lines (8 loc) 250 B
import test from 'ava'; import { render } from 'ink-testing-library'; import React from 'react'; import App from './App.js'; test('basic test', (t) => { const { lastFrame } = render(React.createElement(App, null)); t.snapshot(lastFrame); });