redux-devtools/packages/devui/tests/__snapshots__/Dialog.test.tsx.snap
renovate[bot] 9a77585dd7
chore(deps): update all non-major dependencies (#758)
* chore(deps): update all non-major dependencies

* Prettify

* Combine versions

* Downgrade knex

* Engine changes

* Only LTS

* Greater than

* Combine lodash

* Fix type

* Fix type

* Update snapshots

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
2021-08-26 09:52:23 -04:00

133 lines
2.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Dialog renders correctly 1`] = `
<div
class="sc-pGacB cQhcnT"
>
<div />
<div>
<div
class="mc-dialog--header"
>
<div />
<button>
×
</button>
</div>
<div
class="mc-dialog--body"
/>
<div
class="mc-dialog--footer"
>
<div
class="sc-eCstlR hyNRxs"
>
<button
class="sc-dlfnuX bpFXet"
>
Cancel
</button>
</div>
<div
class="sc-eCstlR hyNRxs"
>
<button
class="sc-dlfnuX eIIxFx"
>
Submit
</button>
</div>
</div>
</div>
</div>
`;
exports[`Dialog renders modal 1`] = `
<div
class="sc-pGacB cQhcnT"
>
<div />
<div>
<div
class="mc-dialog--header"
>
<div />
</div>
<div
class="mc-dialog--body"
/>
<div
class="mc-dialog--footer"
>
<div
class="sc-eCstlR hyNRxs"
>
<button
class="sc-dlfnuX bpFXet"
>
Cancel
</button>
</div>
<div
class="sc-eCstlR hyNRxs"
>
<button
class="sc-dlfnuX eIIxFx"
>
Submit
</button>
</div>
</div>
</div>
</div>
`;
exports[`Dialog renders with props 1`] = `
<div
class="sc-pGacB itppjQ"
open=""
>
<div />
<div>
<div
class="mc-dialog--header"
>
<div>
Dialog Title
</div>
<button>
×
</button>
</div>
<div
class="mc-dialog--body"
>
Hello Dialog!
</div>
<div
class="mc-dialog--footer"
>
<div
class="sc-eCstlR hyNRxs"
>
<button
class="sc-dlfnuX bpFXet"
>
Cancel
</button>
</div>
<div
class="sc-eCstlR hyNRxs"
>
<button
class="sc-dlfnuX eIIxFx"
>
Submit
</button>
</div>
</div>
</div>
</div>
`;