-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: expose project overview #34
base: main
Are you sure you want to change the base?
Conversation
@@ -23,6 +23,7 @@ inverseOperationIds: | |||
- createProject | |||
- updateProject | |||
- deleteProject | |||
- getProjectOverview |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New API
@@ -33,7 +33,9 @@ func createTempUser(t *testing.T, apiClient *client.APIClient, prefix string) *c | |||
|
|||
resp, httpRes, err := apiClient.UsersAPI.CreateUser(context.Background()).CreateUserSchema(createUserSchema).Execute() | |||
|
|||
fmt.Println(err) | |||
if err != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small detail to make this silent when the test is green, just makes the output easier to read
@@ -211,4 +215,35 @@ func Test_client_ProjectsAPIService(t *testing.T) { | |||
t.Skip("Enterprise only feature") | |||
} | |||
}) | |||
|
|||
t.Run("Test ProjectsAPIService Create Project with empty list of environments", func(t *testing.T) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New test
This does two things