wagtail/client/src/components/Explorer/__snapshots__/PageCount.test.js.snap
2017-05-13 23:53:10 +03:00

55 lines
746 B
Text

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`PageCount #title 1`] = `
<a
className="c-explorer__see-more"
href="/admin/pages/1/"
tabIndex={0}
>
See all
<span>
5 pages
</span>
<Icon
className=""
name="arrow-right"
title={null}
/>
</a>
`;
exports[`PageCount plural 1`] = `
<a
className="c-explorer__see-more"
href="/admin/pages/1/"
tabIndex={0}
>
See all
<span>
5 pages
</span>
<Icon
className=""
name="arrow-right"
title={null}
/>
</a>
`;
exports[`PageCount works 1`] = `
<a
className="c-explorer__see-more"
href="/admin/pages/1/"
tabIndex={0}
>
See all
<span>
1 page
</span>
<Icon
className=""
name="arrow-right"
title={null}
/>
</a>
`;