storj/web/satellite/tests/unit/__snapshots__/HeaderedInput.spec.ts.snap
Nikolay Yurchenko 354337a18b
[WIP] Header satellite ui initial markup (#651)
* [V3-635] created Project Dropdown list

* Deleting redundant package-lock.json

* [V3-637] New Project button and popup markup

* component structure and placement changed

* [V3-636] created user profile settings markup

* navigation area created
2018-11-14 16:00:01 +02:00

40 lines
1.1 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`HeaderedInput.vue renders correctly with default props 1`] = `
<div class="inputContainer">
<div class="labelContainer">
<!---->
<h3></h3>
<h3 class="hiAddLabel"></h3>
<!---->
</div>
<!---->
<!----> <input id="" placeholder="default" type="text" style="width: 100%; height: 48px;">
</div>
`;
exports[`HeaderedInput.vue renders correctly with input error 1`] = `
<div class="inputContainer">
<div class="labelContainer"><img src="../../../static/images/register/ErrorInfo.svg">
<!---->
<h3 class="hiAddLabel"></h3>
<h3 class="error">testError</h3>
</div>
<!---->
<!----> <input id="" placeholder="default" type="text" style="width: 100%; height: 48px;">
</div>
`;
exports[`HeaderedInput.vue renders correctly with isMultiline props 1`] = `
<div class="inputContainer">
<div class="labelContainer">
<!---->
<h3></h3>
<h3 class="hiAddLabel"></h3>
<!---->
</div>
<!----> <textarea id="" placeholder="default" rows="5" cols="40" wrap="hard" style="width: 100%; height: 48px;"></textarea>
<!---->
</div>
`;