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
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
Is there a way (or could a way be implemented) to have one specific jasmine spec never time out? I am aware of the 3-argument syntax of
it('Has a custom timeout',function(){expect(true).toBeTruthy();},msec)
that sets a custom timeout of msec. Is there a way to pass an argument that lets this spec never time out? Say, maybe passing a negative number, or just plain false or something?