diff --git a/components/terminal/Terminal.spec.js b/components/terminal/Terminal.spec.js index 70e1a9697..ec7a88da7 100644 --- a/components/terminal/Terminal.spec.js +++ b/components/terminal/Terminal.spec.js @@ -46,7 +46,7 @@ describe('Terminal.vue', () => { setTimeout(() => { expect(wrapper.find('.p-terminal-response').text()).toBe('Valid command'); - }, 0); + }, 50); }); it('should return invalid command', async () => { @@ -92,6 +92,6 @@ describe('Terminal.vue', () => { setTimeout(() => { expect(wrapper.find('.p-terminal-response').text()).toBe('Unknown command: dd'); - }, 0); + }, 50); }); });