We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d67dfa commit b8f7a05Copy full SHA for b8f7a05
site/src/pages/GroupsPage/GroupPage.stories.tsx
@@ -99,7 +99,8 @@ export const MembersError: Story = {
99
},
100
play: async ({ canvasElement }) => {
101
const canvas = within(canvasElement);
102
- await userEvent.click(canvas.getByRole("button", { name: "Open" }));
+ const combobox = await canvas.findByRole("combobox");
103
+ await userEvent.click(combobox);
104
105
};
106
@@ -116,7 +117,8 @@ export const NoMembers: Story = {
116
117
118
119
120
121
122
123
124
0 commit comments