You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the test script in a test project, currently Rugged will wait indefinitely. Ideally, though, it would timeout after some period of time. I'd suggest a default timeout of 30s, with the option to configure this via the config file.
I imagine there'd be many areas where we could eventually allow configurable timeouts, so maybe we could add a timeouts object to the config file, with an option inside of it called tests. So it'd look like:
module.exports={timeouts: {tests: 123,},};
In the future, we could add timeouts.??? for other things we want to impose configurable timeouts on.
The text was updated successfully, but these errors were encountered:
When running the
test
script in a test project, currently Rugged will wait indefinitely. Ideally, though, it would timeout after some period of time. I'd suggest a default timeout of 30s, with the option to configure this via the config file.I imagine there'd be many areas where we could eventually allow configurable timeouts, so maybe we could add a
timeouts
object to the config file, with an option inside of it calledtests
. So it'd look like:In the future, we could add
timeouts.???
for other things we want to impose configurable timeouts on.The text was updated successfully, but these errors were encountered: