# README
Step CLI Integration Tests
How To Run
Run all the integration tests:
make integration
Run only integration tests that match a regex:
go test -tags=integration ./integration/... -run <REGEX>
# Functions
CleanOutput returns the output from the cursor character.
CombinedOutput executes a shell command and returns combined output from stdout and stderr.
Command executes a shell command.
ExitError converts an error to an exec.ExitError.
NewCLICommand generates a new CLICommand.
Output executes a shell command and returns output from stdout.
WithStdin executes a shell command with a provided reader used for stdin.
# Structs
CLICommand represents a command-line command to execute.
CLIOutput represents the output from executing a CLICommand.