1 package ghappman 2 3 import ( 4 "context" 5 "testing" 6 ) 7 8 func TestCreateGitHubApp(t *testing.T) { 9 // TODO: integration test, dont run here 10 t.SkipNow() 11 12 _, err := CreateGitHubApp(context.Background(), "*") 13 if err != nil { 14 t.Error(err) 15 } 16 } 17