Update Terminal.spec.js

This commit is contained in:
Tuğçe Küçükoğlu 2022-12-09 09:47:41 +03:00
parent 892bfc2bd8
commit 8c52b5d509

View file

@ -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);
});
});