We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, if you want to set a custom timeout but do not have cases or a custom test name, you need to pass two empty arguments.
@Test(undefined, undefined, 10000) // Really slow test async slowTest() { // Some test }
As suggested by @bryanmenard in #25, it would be interesting to specify the custom timeout using a @Timeout decorator instead.
@Timeout
@Test() @Timeout(7000) // Really slow test async slowTest() { // Some test }
The text was updated successfully, but these errors were encountered:
Implemented in #28 .
Sorry, something went wrong.
No branches or pull requests
Currently, if you want to set a custom timeout but do not have cases or a custom test name, you need to pass two empty arguments.
As suggested by @bryanmenard in #25, it would be interesting to specify the custom timeout using a
@Timeout
decorator instead.The text was updated successfully, but these errors were encountered: