summaryrefslogtreecommitdiffstats
path: root/cmd
AgeCommit message (Collapse)Author
2023-09-25Support -race arg when running integration tests to turn on go's race detectorStefan Haller
For the "cli" and "tui" modes of the test runner there's a "-race" parameter to turn it on; for running tests on CI with go test, you turn it on by setting the environment variable LAZYGIT_RACE_DETECTOR to a non-empty value.
2023-09-25Allow passing multiple flags to the cli runnerStefan Haller
This is useful for example to pass both -slow and -debug. Since we're about to add yet another flag in the next commit, it becomes even more important. Plus, it makes the code a little nicer too.
2023-09-11Provide a simple way to debug an integration testStefan Haller
2023-08-07Add a Click() primitive to the integration test librarySimon Whitaker
2023-02-26remove legacy integration testsJesse Duffield
2022-09-09add branch rebase integration testJesse Duffield
2022-08-14add slow flag to integration testsJesse Duffield
2022-08-14better CLI interfaceJesse Duffield