This commit is contained in:
Eric Bailey
2026-03-17 16:04:36 -05:00
parent 7eb76c373e
commit 5224c03beb
3 changed files with 6 additions and 3 deletions
+4 -2
View File
@@ -91,7 +91,8 @@ appId: xyz.blueskyweb.app
- tapOn: "Add user to list" - tapOn: "Add user to list"
- swipe: - swipe:
direction: DOWN direction: DOWN
- assertVisible: "View Bob's profile" - assertVisible:
id: "profileCard-bob.test-link"
- tapOn: "Posts" - tapOn: "Posts"
- assertVisible: - assertVisible:
@@ -123,7 +124,8 @@ appId: xyz.blueskyweb.app
- tapOn: "Good Ppl" - tapOn: "Good Ppl"
- tapOn: "People" - tapOn: "People"
- assertVisible: "View Bob's profile" - assertVisible:
id: "profileCard-bob.test-link"
- tapOn: - tapOn:
point: "90%,43%" point: "90%,43%"
- tapOn: - tapOn:
+1 -1
View File
@@ -57,7 +57,7 @@ export const otherRequiredData: OtherRequiredData = {
birthdate: new Date(2000, 1, 1).toISOString(), birthdate: new Date(2000, 1, 1).toISOString(),
} }
const serverStateEnabled = false const serverStateEnabled = false || IS_E2E
export const serverState: AppBskyAgeassuranceGetState.OutputSchema | undefined = export const serverState: AppBskyAgeassuranceGetState.OutputSchema | undefined =
serverStateEnabled serverStateEnabled
? { ? {
+1
View File
@@ -145,6 +145,7 @@ export function Link({
return ( return (
<InternalLink <InternalLink
testID={`profileCard-${profile.handle}-link`}
label={l`View ${ label={l`View ${
profile.displayName || sanitizeHandle(profile.handle) profile.displayName || sanitizeHandle(profile.handle)
}’s profile`} }’s profile`}