From 01f1135df1bbf44217124e78850cf1e12911e01e Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Wed, 27 Jun 2018 21:37:29 +0300 Subject: LoginButton refactoring and snapshots --- vnext/src/components/__tests__/LoginButton.test.js | 16 ++ .../__snapshots__/LoginButton.test.js.snap | 178 +++++++++++++++++++++ 2 files changed, 194 insertions(+) create mode 100644 vnext/src/components/__tests__/LoginButton.test.js create mode 100644 vnext/src/components/__tests__/__snapshots__/LoginButton.test.js.snap (limited to 'vnext/src/components/__tests__') diff --git a/vnext/src/components/__tests__/LoginButton.test.js b/vnext/src/components/__tests__/LoginButton.test.js new file mode 100644 index 00000000..0b672365 --- /dev/null +++ b/vnext/src/components/__tests__/LoginButton.test.js @@ -0,0 +1,16 @@ +import React from 'react'; + +import LoginButton from '../LoginButton'; +import renderer from 'react-test-renderer'; + +test('Login button and form are renders correctly', () => { + const button = renderer.create( + {}} /> + ); + let link = button.toJSON(); + expect(link).toMatchSnapshot(); + + button.root.instance.toggleModal(); + let modal = button.toJSON(); + expect(modal).toMatchSnapshot(); +}); \ No newline at end of file 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`] = ` + +
+ ", + } + } + /> +
+ Log in +
+`; + +exports[`Login button and form are renders correctly 2`] = ` +Array [ + +
+ ", + } + } + /> +
+ Log in +
, +
+
+
+
+
+ ", + } + } + /> +
+
+
+
+

+ Please, introduce yourself: +

+
+ +
+ ", + } + } + /> +
+ Log in +
+ +
+ ", + } + } + /> +
+ Log in +
+
+

+ Already registered? +

+
+ +
+ +
+ +
+
+
+
, +] +`; -- cgit v1.2.3