mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-27 18:31:40 -07:00
98 lines
2.1 KiB
Text
98 lines
2.1 KiB
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`rendering of the AboutCard checks if large cards component renders 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="grid-gap-lg tablet:grid-col"
|
|
data-testid="grid"
|
|
>
|
|
<div
|
|
class="grid-row j40-aboutcard-lg-card"
|
|
data-testid="grid"
|
|
>
|
|
<div
|
|
class="tablet:grid-col-3 j40-aboutpage-image-container"
|
|
data-testid="grid"
|
|
>
|
|
<img
|
|
alt="Test Header"
|
|
class="j40-aboutcard-image"
|
|
src="about:blank"
|
|
/>
|
|
</div>
|
|
<div
|
|
class="tablet:grid-col-9"
|
|
data-cy="test-header-block"
|
|
data-testid="grid"
|
|
>
|
|
<div
|
|
class="grid-row"
|
|
data-testid="grid"
|
|
>
|
|
<h2>
|
|
Test Header
|
|
</h2>
|
|
Content body of the action card.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|
|
|
|
exports[`rendering of the AboutCard checks if small cards component renders 1`] = `
|
|
<DocumentFragment>
|
|
<div
|
|
class="grid-gap-lg tablet:grid-col"
|
|
data-testid="grid"
|
|
>
|
|
<div
|
|
class="grid-row j40-aboutcard-sm-card"
|
|
data-testid="grid"
|
|
>
|
|
<div
|
|
class="tablet:grid-col-2 j40-aboutpage-image-container"
|
|
data-testid="grid"
|
|
>
|
|
<img
|
|
alt="Test Header"
|
|
class="j40-aboutcard-image"
|
|
src="about:blank"
|
|
/>
|
|
</div>
|
|
<div
|
|
class="tablet:grid-col-9"
|
|
data-cy="test-header-block"
|
|
data-testid="grid"
|
|
>
|
|
<div
|
|
class="grid-row"
|
|
data-testid="grid"
|
|
>
|
|
<h3>
|
|
Test Header
|
|
</h3>
|
|
Content body of the action card.
|
|
<div
|
|
class="j40-aboutcard-sm-link"
|
|
>
|
|
<a
|
|
class="j40-aboutcard-link"
|
|
data-cy=""
|
|
href="#"
|
|
>
|
|
Test Action
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
class="grid-col-1"
|
|
data-testid="grid"
|
|
>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|