mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||
|
|
||
|
exports[`JwtDropdown should render the Jwt dropdown component 1`] = `
|
||
|
<div>
|
||
|
<div
|
||
|
class="box box--flex-direction-row"
|
||
|
>
|
||
|
<p
|
||
|
class="box mm-text custody-search-jwt__select-title mm-text--body-md mm-text--color-text-default box--padding-1 box--flex-direction-row"
|
||
|
>
|
||
|
[selectJWT]
|
||
|
</p>
|
||
|
<div
|
||
|
class="dropdown custody-search-jwt__select"
|
||
|
>
|
||
|
<select
|
||
|
class="dropdown__select"
|
||
|
data-testid="jwt-dropdown"
|
||
|
>
|
||
|
<option
|
||
|
value="someToken"
|
||
|
>
|
||
|
someToken
|
||
|
</option>
|
||
|
<option
|
||
|
value="jwy1"
|
||
|
>
|
||
|
...jwy1
|
||
|
</option>
|
||
|
<option
|
||
|
value="jwt2"
|
||
|
>
|
||
|
...jwt2
|
||
|
</option>
|
||
|
</select>
|
||
|
<span
|
||
|
class="box dropdown__icon-caret-down mm-icon mm-icon--size-sm box--display-inline-block box--flex-direction-row box--color-inherit"
|
||
|
style="mask-image: url('./images/icons/arrow-down.svg');"
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
`;
|