vim-test / vim-test

Run your tests at the speed of thought

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Test execution timeout

mahmoudhossam opened this issue · comments

Vim-test currently runs tests until completion, even if this will take forever.

There should be a timeout option where execution will be canceled if it exceeds this timeout, printing the results so far.

This very much depends on the test runner as each of them will have a different option for test timeouts. For example the timeout option in Jest, so in this case if you wanted to set a timeout you could do :TestSuite --testTimeout=5000

Which test framework were you using where the tests could take forever?

This very much depends on the test runner as each of them will have a different option for test timeouts. For example the timeout option in Jest, so in this case if you wanted to set a timeout you could do :TestSuite --testTimeout=5000

Which test framework were you using where the tests could take forever?

I was using Go, but you're right that this is going to be runner-specific.

I'll check the documentation for my test runner, thanks!