| 24 | ) |
| 25 | |
| 26 | type IntegrationTest struct { |
| 27 | name string |
| 28 | description string |
| 29 | extraCmdArgs []string |
| 30 | extraEnvVars map[string]string |
| 31 | skip bool |
| 32 | setupRepo func(shell *Shell) |
| 33 | setupConfig func(config *config.AppConfig) |
| 34 | run func( |
| 35 | testDriver *TestDriver, |
| 36 | keys config.KeybindingConfig, |
| 37 | ) |
| 38 | gitVersion GitVersionRestriction |
| 39 | width int |
| 40 | height int |
| 41 | isDemo bool |
| 42 | } |
| 43 | |
| 44 | var _ integrationTypes.IntegrationTest = &IntegrationTest{} |
| 45 |
nothing calls this directly
no outgoing calls
no test coverage detected