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

Version Path
hippo-fw-0.9.9 command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx
hippo-fw-0.9.8 command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx
hippo-fw-0.9.7 command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx
hippo-fw-0.9.6 command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx
hippo-fw-0.9.5 command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx
hippo-fw-0.9.4 command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx
hippo-fw-0.9.3 command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx
hippo-fw-0.9.2 command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx
hippo-fw-0.9.1 command-reference-files/screen/spec/client/screens/ready-set-go.spec.jsx