-
-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
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
Stop runner when found duplicate functions #101
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Command appears to be unreachable. Check usage (or ignore if invoked indirectly). [SC2317]
4260418
to
2064653
Compare
6eeb95a
to
fbb540d
Compare
I've tried different approaches, but I couldnβt make this happen... Maybe you could try this out. What about working on this idea in a follow up PR to unblock the changes in this one? |
π Description
Issue: #56
Stop the execution of the test runner if you have two tests with the same name.
π Changes
πΌοΈ Screenshots
Example:
ποΈ TODO
This current implementation works only when using the syntax
function foo () {...
, but in bash you can define functions withoutfunction
and without the parentheses, so these two forms should also be valid and implemented in a follow up PRyourFunc() { ...
function yourFunc { ...