Browse Source

ninekey unit test

pull/10/head
Tim Glasgow 2 years ago
parent
commit
9980d094b6
  1. 5
      squarenotsquare/__tests__/App-test.js

5
squarenotsquare/__tests__/App-test.js

@ -10,6 +10,7 @@ import Game from '../src/screens/Game';
import HighScore from '../src/screens/HighScore';
import Home from '../src/screens/Home';
import Splash from '../src/screens/Splash';
import NineKey from '../src/components/NineKey';
jest.useFakeTimers()
it('renders square stack', () => {
@ -46,3 +47,7 @@ it('renders home component', () => {
it('renders splash component', () => {
renderer.create(<Splash />);
});
it('renders ninekey component', () => {
renderer.create(<NineKey />)
})
Loading…
Cancel
Save