Chore: disable flaky tests (#63251)

Of the last 10 failures, only two tests were flaking. This disables
those tests until we can figure out why they were flaking.
This commit is contained in:
Camden Cheek 2024-06-13 10:45:44 -06:00 committed by GitHub
parent 0b8d12dcad
commit af22bd261f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -181,7 +181,8 @@ test.describe('file header', () => {
)
})
test('dropdown menu', async ({ page }) => {
// Disabled because flaky in CI
test.fixme('dropdown menu', async ({ page }) => {
await page.goto(url)
async function openDropdown() {

View File

@ -56,7 +56,8 @@ test.beforeEach(async ({ sg }) => {
})
})
test('paginate contributors', async ({ page }) => {
// Disabled because flaky in CI
test.fixme('paginate contributors', async ({ page }) => {
await page.goto(url)
await expect(page.getByRole('row')).toHaveCount(5)