Sha256: 86f90741bdcf4e4f1f3da408cf8406a68247dced37efb52411be1ec01e13b6e6

Contents?: true

Size: 440 Bytes

Versions: 1

Compression:

Stored size: 440 Bytes

Contents

import React from 'react';

import { Col } from 'react-flexbox-grid';
import Asset from 'hippo/components/asset';

import { TestImage } from '../test-models';
import { Snapshot } from 'hippo/testing/screens';

describe("Asset Component", () => {
    it('renders', () => {
        const image = new TestImage();
        const asset = mount(<Asset model={image} name="asset" />);
        expect(asset).toHaveRendered('Dropzone');
    });
});

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
hippo-fw-0.9.5 spec/client/components/asset.spec.jsx