Sha256: 7b4ce8f2211816ead90d0323204baaf404007a1ccf10b2bfaaf68d81eabc863d
Contents?: true
Size: 496 Bytes
Versions: 9
Compression:
Stored size: 496 Bytes
Contents
import { React, Snapshot, getScreenInstance } from 'hippo/testing/index'; import ReadySetGo from 'appy-app/screens/ready-set-go'; const screenInstance = getScreenInstance('ready-set-go'); describe('Screen ReadySetGo', () => { it('renders and matches snapshot', () => { const screen = shallow(<ReadySetGo screen={screenInstance} />); expect(screen).toHaveRendered('ReadySetGo'); expect(Snapshot(<ReadySetGo screen={screenInstance} />)).toMatchSnapshot(); }); });
Version data entries
9 entries across 9 versions & 1 rubygems