mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-14 02:34:19 -07:00
40 lines
949 B
Text
40 lines
949 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`rendering of the UpdateBanner renders large version before cutoff date 1`] = `
|
|
<DocumentFragment>
|
|
<div>
|
|
<div
|
|
class="usa-alert usa-alert--info"
|
|
data-testid="alert"
|
|
>
|
|
<div
|
|
class="usa-alert__body"
|
|
>
|
|
<h1
|
|
class="usa-alert__heading"
|
|
>
|
|
Version 2.0 of the tool is now available
|
|
</h1>
|
|
<p
|
|
class="usa-alert__text"
|
|
>
|
|
The Council on Environmental Quality (CEQ) made the 2.0 version of the tool available on Dec 20, 2024.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|
|
|
|
exports[`rendering of the UpdateBanner renders small version at cutoff date 1`] = `
|
|
<DocumentFragment>
|
|
<div>
|
|
<div>
|
|
<strong>
|
|
This tool has been updated.
|
|
</strong>
|
|
The 2.0 version of the tool was released on Dec 20, 2024.
|
|
</div>
|
|
</div>
|
|
</DocumentFragment>
|
|
`;
|