Skip to content

Commit

Permalink
test(web-terminal): fixes Terminal load test (#1249)
Browse files Browse the repository at this point in the history
  • Loading branch information
invincibleJai authored Feb 22, 2024
1 parent 49a5a70 commit 1f2f17d
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,9 @@ describe('TerminalComponent', () => {
await waitFor(() =>
expect(rendered.getByTestId('progress')).toBeInTheDocument(),
);
await waitFor(() =>
expect(rendered.getByTestId('terminal')).toBeInTheDocument(),
await waitFor(
() => expect(rendered.getByTestId('terminal')).toBeInTheDocument(),
{ timeout: 8000 },
);
});
});

0 comments on commit 1f2f17d

Please sign in to comment.