Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/e2e/specs/classic-block.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test.describe('Feedzy Classic Block', () => {

await page.getByRole('button', { name: 'Load Feed' }).click();

await page.waitForSelector('.feedzy-validation-results');
await page.waitForSelector('.feedzy-validation-results', { timeout: 30000 });

await expect(
page
Expand Down Expand Up @@ -49,7 +49,7 @@ test.describe('Feedzy Classic Block', () => {

await page.getByRole('button', { name: 'Load Feed' }).click();

await page.waitForSelector('.feedzy-validation-results');
await page.waitForSelector('.feedzy-validation-results', { timeout: 30000 });

await expect(
page
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/specs/loop.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ test.describe('Feedzy Loop', () => {
.fill('http://invalid-url.com/feed');
await page.getByRole('button', { name: 'Load Feed' }).click();

await page.waitForSelector('.feedzy-validation-results');
await page.waitForSelector('.feedzy-validation-results', { timeout: 30000 });

await expect(
page
Expand All @@ -146,7 +146,7 @@ test.describe('Feedzy Loop', () => {
);
await page.getByRole('button', { name: 'Load Feed' }).click();

await page.waitForSelector('.feedzy-validation-results');
await page.waitForSelector('.feedzy-validation-results', { timeout: 30000 });

await expect(
page
Expand Down
Loading