diff options
Diffstat (limited to '__e2e__/tests/home-screen.test.ts')
-rw-r--r-- | __e2e__/tests/home-screen.test.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/__e2e__/tests/home-screen.test.ts b/__e2e__/tests/home-screen.test.ts index 1ec1774f3..7fa9ff28c 100644 --- a/__e2e__/tests/home-screen.test.ts +++ b/__e2e__/tests/home-screen.test.ts @@ -57,7 +57,9 @@ describe('Home screen', () => { .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() }) |