Remove @ symbol from usernames (#2339)

* Remove @ symbol from user handle

* Remove @ symbol from e2e test

---------

Co-authored-by: Ken-ichi Ueda <kenichi.ueda@gmail.com>
This commit is contained in:
Amanda Bullington
2024-11-06 10:03:09 -08:00
committed by GitHub
parent 7e3ab47371
commit 0916da7787
13 changed files with 24 additions and 28 deletions

View File

@@ -22,7 +22,7 @@ export default async function signIn() {
const loginButton = element( by.id( "Login.loginButton" ) );
await expect( loginButton ).toBeVisible();
await element( by.id( "Login.loginButton" ) ).tap();
const username = element( by.text( `@${Config.E2E_TEST_USERNAME}` ) ).atIndex( 1 );
const username = element( by.text( `${Config.E2E_TEST_USERNAME}` ) ).atIndex( 1 );
await waitFor( username ).toBeVisible().withTimeout( 10000 );
await expect( username ).toBeVisible();
return username;