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 2019/03/28 10:27:58 UTC

[ignite] branch master updated: IGNITE-11645 Web Console: Fixed failing e2e test.

This is an automated email from the ASF dual-hosted git repository.

akuznetsov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new ab57fbc  IGNITE-11645 Web Console: Fixed failing e2e test.
ab57fbc is described below

commit ab57fbc897b5c02d5ef4af4d171f413389f1b6b9
Author: Ilya Borisov <kl...@gmail.com>
AuthorDate: Thu Mar 28 17:25:51 2019 +0700

    IGNITE-11645 Web Console: Fixed failing e2e test.
---
 modules/web-console/e2e/testcafe/fixtures/auth/signup.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/web-console/e2e/testcafe/fixtures/auth/signup.js b/modules/web-console/e2e/testcafe/fixtures/auth/signup.js
index 44b199f..062d96a 100644
--- a/modules/web-console/e2e/testcafe/fixtures/auth/signup.js
+++ b/modules/web-console/e2e/testcafe/fixtures/auth/signup.js
@@ -57,7 +57,7 @@ test('Server validation', async(t) => {
     });
     await t
         .click(page.signupButton)
-        .expect(errorNotification.withText('A user with the given username is already registered').exists).ok('Shows global error')
+        .expect(errorNotification.withText('A user with the given email is already registered').exists).ok('Shows global error')
         .expect(page.email.getError('server').exists).ok('Marks email input as server-invalid');
 });
 test('Successful signup', async(t) => {