diff options
author | Vitaly Takmazov | 2018-06-27 21:37:29 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-01-13 10:37:53 +0300 |
commit | 01f1135df1bbf44217124e78850cf1e12911e01e (patch) | |
tree | 629ddbfa799c695a9817ee8521d12db69d097526 /vnext/src/components/__tests__/__snapshots__ | |
parent | 1662e167d29eec80a48037b3fac7ed5f1bcbe4f7 (diff) |
LoginButton refactoring and snapshots
Diffstat (limited to 'vnext/src/components/__tests__/__snapshots__')
-rw-r--r-- | vnext/src/components/__tests__/__snapshots__/LoginButton.test.js.snap | 178 |
1 files changed, 178 insertions, 0 deletions
diff --git a/vnext/src/components/__tests__/__snapshots__/LoginButton.test.js.snap b/vnext/src/components/__tests__/__snapshots__/LoginButton.test.js.snap new file mode 100644 index 00000000..cc01126f --- /dev/null +++ b/vnext/src/components/__tests__/__snapshots__/LoginButton.test.js.snap @@ -0,0 +1,178 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Login button and form are renders correctly 1`] = ` +<a + onClick={[Function]} +> + <div + className="icon icon--ei-user icon--s" + > + <svg + className="icon__cnt" + dangerouslySetInnerHTML={ + Object { + "__html": "<use xlink:href=#ei-user-icon />", + } + } + /> + </div> + Log in +</a> +`; + +exports[`Login button and form are renders correctly 2`] = ` +Array [ + <a + onClick={[Function]} + > + <div + className="icon icon--ei-user icon--s" + > + <svg + className="icon__cnt" + dangerouslySetInnerHTML={ + Object { + "__html": "<use xlink:href=#ei-user-icon />", + } + } + /> + </div> + Log in + </a>, + <div + id="dialogt" + style={ + Object { + "backgroundColor": "rgba(0,0,0,0.3)", + "bottom": 0, + "left": 0, + "padding": 50, + "position": "fixed", + "right": 0, + "top": 0, + } + } + > + <div + id="dialogw" + > + <div + id="dialog_header" + > + <div + id="dialogc" + onClick={[Function]} + > + <div + className="icon icon--ei-close icon--s" + > + <svg + className="icon__cnt" + dangerouslySetInnerHTML={ + Object { + "__html": "<use xlink:href=#ei-close-icon />", + } + } + /> + </div> + </div> + </div> + <div + className="dialoglogin" + > + <p> + Please, introduce yourself: + </p> + <div + style={ + Object { + "display": "flex", + "justifyContent": "space-evenly", + "padding": "4px", + } + } + > + <a + href="https://api.juick.com/_fblogin?state=about://blank" + style={ + Object { + "background": "#3b5998", + "color": "#fff", + "padding": "2px 14px", + } + } + > + <div + className="icon icon--s" + > + <svg + className="icon__cnt" + dangerouslySetInnerHTML={ + Object { + "__html": "<use xlink:href=#ei-sc-facebook-icon />", + } + } + /> + </div> + Log in + </a> + <a + href="https://api.juick.com/_vklogin?state=about://blank" + style={ + Object { + "background": "#4c75a3", + "color": "#fff", + "padding": "2px 14px", + } + } + > + <div + className="icon icon--s" + > + <svg + className="icon__cnt" + dangerouslySetInnerHTML={ + Object { + "__html": "<use xlink:href=#ei-sc-vk-icon />", + } + } + /> + </div> + Log in + </a> + </div> + <p> + Already registered? + </p> + <form + onSubmit={[Function]} + > + <input + className="signinput" + name="username" + onChange={[Function]} + placeholder="Username..." + type="text" + value="" + /> + <br /> + <input + className="signinput" + name="password" + onChange={[Function]} + placeholder="Password..." + type="password" + value="" + /> + <br /> + <input + className="signsubmit" + type="submit" + value="OK" + /> + </form> + </div> + </div> + </div>, +] +`; |