You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2018/04/02 09:41:44 UTC

ignite git commit: IGNITE-8011 Web console: Fixed typo in module name.

Repository: ignite
Updated Branches:
  refs/heads/master 43d055767 -> 1d0a5168a


IGNITE-8011 Web console: Fixed typo in module name.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/1d0a5168
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/1d0a5168
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/1d0a5168

Branch: refs/heads/master
Commit: 1d0a5168a3d124096822ae369daaacf6afe0d7d4
Parents: 43d0557
Author: Alexander Kalinin <ve...@yandex.ru>
Authored: Mon Apr 2 16:42:00 2018 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Mon Apr 2 16:42:00 2018 +0700

----------------------------------------------------------------------
 .../web-console/e2e/testcafe/fixtures/auth/forgot-password.js  | 6 +++---
 modules/web-console/e2e/testcafe/fixtures/auth/signup.js       | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/1d0a5168/modules/web-console/e2e/testcafe/fixtures/auth/forgot-password.js
----------------------------------------------------------------------
diff --git a/modules/web-console/e2e/testcafe/fixtures/auth/forgot-password.js b/modules/web-console/e2e/testcafe/fixtures/auth/forgot-password.js
index d1a8dc8..6b151ed 100644
--- a/modules/web-console/e2e/testcafe/fixtures/auth/forgot-password.js
+++ b/modules/web-console/e2e/testcafe/fixtures/auth/forgot-password.js
@@ -16,7 +16,7 @@
  */
 
 import { dropTestDB, resolveUrl, insertTestUser } from '../../envtools';
-import {PageSignIn} from '../../page-models/PageSignin';
+import {PageSignIn} from '../../page-models/PageSignIn';
 import {errorNotification} from '../../components/notifications';
 
 const page = new PageSignIn();
@@ -48,8 +48,8 @@ test('Unknown email', async(t) => {
         .expect(page.forgotPassword.email.getError('server').exists).ok('Marks input as server-invalid');
 });
 
-// Will fail without a local SMTP server.
-test('Successful reset', async(t) => {
+// TODO: IGNITE-8028 Implement this test as unit test.
+test.skip('Successful reset', async(t) => {
     await t
         .click(page.showForgotPasswordButton)
         .typeText(page.forgotPassword.email.control, 'a@a', {replace: true})

http://git-wip-us.apache.org/repos/asf/ignite/blob/1d0a5168/modules/web-console/e2e/testcafe/fixtures/auth/signup.js
----------------------------------------------------------------------
diff --git a/modules/web-console/e2e/testcafe/fixtures/auth/signup.js b/modules/web-console/e2e/testcafe/fixtures/auth/signup.js
index eddc33e..065bff9 100644
--- a/modules/web-console/e2e/testcafe/fixtures/auth/signup.js
+++ b/modules/web-console/e2e/testcafe/fixtures/auth/signup.js
@@ -16,7 +16,7 @@
  */
 
 import {dropTestDB, resolveUrl, insertTestUser} from '../../envtools';
-import {PageSignIn} from '../../page-models/PageSignin';
+import {PageSignIn} from '../../page-models/PageSignIn';
 import {errorNotification} from '../../components/notifications';
 import {userMenu} from '../../components/userMenu';