Skip to content

Commit

Permalink
fix(terminal test): timeout is not respected at Terminal view tests
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Jelinek <[email protected]>
  • Loading branch information
djelinek committed Jul 19, 2024
1 parent 9d8ab90 commit bea49c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test-project/src/test/bottomBar/views.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ describe('Output View/Text Views', function () {
let terminal: TerminalView;
let terminalName = process.platform === 'win32' ? (VSBrowser.instance.version >= '1.53.0' ? 'pwsh' : 'powershell') : 'bash';

before(async () => {
before(async function () {
this.timeout(15_000);
terminal = await panel.openTerminalView();
await new Promise((res) => setTimeout(res, 2000));
Expand Down

0 comments on commit bea49c1

Please sign in to comment.