Skip to content

Commit

Permalink
ref
Browse files Browse the repository at this point in the history
  • Loading branch information
uziab committed Oct 27, 2024
1 parent 27308ec commit 25a5bff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/testing-kit/src/__TESTS__/buttonGroup.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test.describe("ButtonGroup Class with Storybook", () => {

// Locate the button group inside the iframe
const buttonGroupLocator = frame.locator('div[data-testid="button-group"]');
while (await button.locator.isVisible() === false) {
while (await buttonGroupLocator.locator.isVisible() === false) {
await page.waitForTimeout(30000);
await page.reload();
if (await buttonGroupLocator.locator.isVisible() === true) {
Expand Down

0 comments on commit 25a5bff

Please sign in to comment.