Skip to content

feat(site): add agent connection timings #15276

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 20 commits into from
Nov 1, 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
Next Next commit
Fix storybook
  • Loading branch information
BrunoQuaresma committed Oct 31, 2024
commit 4bd653856a9327e524f14ffb0b941a846c05930c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const ClickToOpen: Story = {
play: async ({ canvasElement }) => {
const user = userEvent.setup();
const canvas = within(canvasElement);
await user.click(canvas.getByRole("button"));
await user.click(canvas.getByText("Build timeline", { exact: false }));
await canvas.findByText("provisioning");
},
};
Expand All @@ -59,7 +59,7 @@ export const ClickToClose: Story = {
const user = userEvent.setup();
const canvas = within(canvasElement);
await canvas.findByText("provisioning");
await user.click(canvas.getByText("Provisioning time", { exact: false }));
await user.click(canvas.getByText("Build timeline", { exact: false }));
await waitFor(() =>
expect(canvas.getByText("workspace boot")).not.toBeVisible(),
);
Expand Down
Loading