package ghappman import ( "context" "testing" ) func TestCreateGitHubApp(t *testing.T) { // TODO: integration test, dont run here t.SkipNow() _, err := CreateGitHubApp(context.Background(), "*") if err != nil { t.Error(err) } }