mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-27 12:32:37 +02:00
don't quit integration test tui upon error
This commit is contained in:
parent
47f84b6aea
commit
79620fc6cf
@ -33,7 +33,7 @@ func RunCLI(testNames []string, slow bool) {
|
||||
getTestsToRun(testNames),
|
||||
log.Printf,
|
||||
runCmdInTerminal,
|
||||
runAndPrintError,
|
||||
runAndPrintFatalError,
|
||||
getModeFromEnv(),
|
||||
keyPressDelay,
|
||||
)
|
||||
@ -42,7 +42,7 @@ func RunCLI(testNames []string, slow bool) {
|
||||
}
|
||||
}
|
||||
|
||||
func runAndPrintError(test *components.IntegrationTest, f func() error) {
|
||||
func runAndPrintFatalError(test *components.IntegrationTest, f func() error) {
|
||||
if err := f(); err != nil {
|
||||
log.Fatalf(err.Error())
|
||||
}
|
||||
|
@ -380,3 +380,9 @@ func runTuiTest(test *components.IntegrationTest, mode components.Mode, keyPress
|
||||
log.Println(err.Error())
|
||||
}
|
||||
}
|
||||
|
||||
func runAndPrintError(test *components.IntegrationTest, f func() error) {
|
||||
if err := f(); err != nil {
|
||||
log.Println(err.Error())
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user