about summary refs log tree commit diff
path: root/__e2e__/tests/thread-screen.test.ts
diff options
context:
space:
mode:
Diffstat (limited to '__e2e__/tests/thread-screen.test.ts')
-rw-r--r--__e2e__/tests/thread-screen.test.ts8
1 files changed, 6 insertions, 2 deletions
diff --git a/__e2e__/tests/thread-screen.test.ts b/__e2e__/tests/thread-screen.test.ts
index f84c339ce..8d3eacc88 100644
--- a/__e2e__/tests/thread-screen.test.ts
+++ b/__e2e__/tests/thread-screen.test.ts
@@ -106,7 +106,9 @@ describe('Thread screen', () => {
     await element(by.id('postDropdownBtn').withAncestor(post)).atIndex(0).tap()
     await element(by.id('postDropdownReportBtn')).tap()
     await expect(element(by.id('reportPostModal'))).toBeVisible()
-    await element(by.id('reportPostRadios-spam')).tap()
+    await element(
+      by.id('reportPostRadios-com.atproto.moderation.defs#reasonSpam'),
+    ).tap()
     await element(by.id('sendReportBtn')).tap()
     await expect(element(by.id('reportPostModal'))).not.toBeVisible()
   })
@@ -116,7 +118,9 @@ describe('Thread screen', () => {
     await element(by.id('postDropdownBtn').withAncestor(post)).atIndex(0).tap()
     await element(by.id('postDropdownReportBtn')).tap()
     await expect(element(by.id('reportPostModal'))).toBeVisible()
-    await element(by.id('reportPostRadios-spam')).tap()
+    await element(
+      by.id('reportPostRadios-com.atproto.moderation.defs#reasonSpam'),
+    ).tap()
     await element(by.id('sendReportBtn')).tap()
     await expect(element(by.id('reportPostModal'))).not.toBeVisible()
   })