joyent-portal/packages/my-joy-beta/src/containers/navigation/__tests__/breadcrumb.ui.js

37 lines
667 B
JavaScript

import React from 'react';
import { toMatchImageSnapshot } from 'jest-image-snapshot';
import screenshot from 'react-screenshot-renderer';
import Breadcrumb from '../breadcrumb';
import Theme from '@mocks/theme';
expect.extend({
toMatchImageSnapshot
});
it('<Breadcrumb />', async () => {
expect(
await screenshot(
<Theme ss>
<Breadcrumb />
</Theme>
)
).toMatchImageSnapshot();
});
it('<Breadcrumb match />', async () => {
const match = {
params: {
instance: 'name'
}
};
expect(
await screenshot(
<Theme ss>
<Breadcrumb match={match} />
</Theme>
)
).toMatchImageSnapshot();
});