mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2025-12-23 22:18:36 -05:00
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:
committed by
GitHub
parent
7e3ab47371
commit
0916da7787
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user