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
Add file -f $FILE flag to run tests in specific file. Where $FILE is the name of the file.
Add input -i $INPUT flag to run tests with or without inputs. $INPUT is a boolean true or false.
Motivation
Currently the leo test command runs all tests in the main.leo file only.
Functionality should be added to run tests in a specific file and toggle tests with or without input.
Implementation
Add cli argument and file parsing logic to Leo CLI.
The text was updated successfully, but these errors were encountered:
Features:
- introduces new Command and Route traits for Leo commands and Aleo PM API
- most of the CLI code replace with higher-level abstraction - StructOpt
- anyhow used for error handling, no more custom error classes
- improves API - now every status code has its business logic
- adds global flags (e.g. --quiet to suppress output)
- error messages improved for convenience and better user experience
Closes:
- #604
- #599
- #584
- #277
- #376
🚀 Feature
Add file
-f $FILE
flag to run tests in specific file. Where$FILE
is the name of the file.Add input
-i $INPUT
flag to run tests with or without inputs. $INPUT is a booleantrue
orfalse
.Motivation
Currently the
leo test
command runs all tests in themain.leo
file only.Functionality should be added to run tests in a specific file and toggle tests with or without input.
Implementation
Add cli argument and file parsing logic to Leo CLI.
The text was updated successfully, but these errors were encountered: