Skip to content

Commit

Permalink
Increase findByRole timeout for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
personalizedrefrigerator committed Jun 3, 2024
1 parent eb981ac commit d0804b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ describe('PluginStates.installed', () => {
await user.press(updateButton);

// After updating, the update button should read "updated"
const updatedButton = await screen.findByRole('button', { name: 'Updated', disabled: true });
const updatedButton = await screen.findByRole('button', { name: 'Updated', disabled: true, timeout: 8000 });
expect(updatedButton).toBeVisible();

// Should be marked as updated.
Expand Down

0 comments on commit d0804b5

Please sign in to comment.