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
Part of being able to add more unit tests for issue #58 and run them concurrently involves removing/reducing the number of shared global dependencies.
Solution
We could do this by avoiding a command's logic from calling global variables directly and instead pass them a copy to a command's constructor in the cli.Main.
Problem
Part of being able to add more unit tests for issue #58 and run them concurrently involves removing/reducing the number of shared global dependencies.
Solution
We could do this by avoiding a command's logic from calling global variables directly and instead pass them a copy to a command's constructor in the
cli.Main
.Here is an example for the switch command: #60
The text was updated successfully, but these errors were encountered: