Skip to content

fix: show template name on workspace page when template display name is unset #15262

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 2 commits into from
Oct 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
thanks I hate it
  • Loading branch information
aslilac committed Oct 29, 2024
commit ee48b370050edc18c581d7dcdb8efe12fe716fc9
36 changes: 36 additions & 0 deletions site/src/pages/WorkspacePage/WorkspaceTopbar.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -320,3 +320,39 @@ export const TemplateDoesNotAllowAutostop: Story = {
},
},
};

export const TemplateInfoPopover: Story = {
play: async ({ canvasElement, step }) => {
const canvas = within(canvasElement);

await step("activate hover trigger", async () => {
await userEvent.hover(canvas.getByText(baseWorkspace.name));
await waitFor(() =>
expect(
canvas.getByRole("presentation", { hidden: true }),
).toHaveTextContent(MockTemplate.display_name),
);
});
},
};

export const TemplateInfoPopoverWithoutDisplayName: Story = {
args: {
workspace: {
...baseWorkspace,
template_display_name: "",
},
},
play: async ({ canvasElement, step }) => {
const canvas = within(canvasElement);

await step("activate hover trigger", async () => {
await userEvent.hover(canvas.getByText(baseWorkspace.name));
await waitFor(() =>
expect(
canvas.getByRole("presentation", { hidden: true }),
).toHaveTextContent(MockTemplate.name),
);
});
},
};
Loading