Skip to content

refactor: poll for git auth updates when creating a workspace #9804

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

Merged
merged 13 commits into from
Sep 26, 2023
Prev Previous commit
Next Next commit
fix tests
  • Loading branch information
aslilac committed Sep 22, 2023
commit 479a790690299506f4e2bbea927e641dd7de7841
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ describe("CreateWorkspacePage", () => {
MockOrganization.id,
"me",
expect.objectContaining({
template_id: MockTemplate.id,
template_version_id: MockTemplate.active_version_id,
rich_parameter_values: [{ name: param, value: paramValue }],
}),
);
Expand Down
2 changes: 1 addition & 1 deletion site/src/testHelpers/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1154,7 +1154,7 @@ export const MockTemplateVersionVariable5: TypesGen.TemplateVersionVariable = {
// requests the MockWorkspace
export const MockWorkspaceRequest: TypesGen.CreateWorkspaceRequest = {
name: "test",
template_id: "test-template",
template_version_id: "test-template-version",
rich_parameter_values: [
{
name: MockTemplateVersionParameter1.name,
Expand Down