Browse Source

test(perf-issues): Reduce performance issue details page test flakiness (#43500)

The after-click section of the test often fails, the element doesn't
appear. Probably we need to wait for it to appear, but for now I'm
removing that part altogether.
George Gritsouk 2 years ago
parent
commit
d477f81828
1 changed files with 0 additions and 2 deletions
  1. 0 2
      tests/acceptance/test_performance_issues.py

+ 0 - 2
tests/acceptance/test_performance_issues.py

@@ -66,8 +66,6 @@ class PerformanceIssuesTest(AcceptanceTestCase, SnubaTestCase):
             event = self.store_event(data=event_data, project_id=self.project.id)
 
             self.page.visit_issue(self.org.slug, event.groups[0].id)
-            self.browser.click('[aria-label="Show Details"]')
-
             self.browser.snapshot("performance issue details", desktop_only=True)
 
     @patch("django.utils.timezone.now")