Skip to content

Commit

Permalink
fix(editors/subscription): Increase timeout for failing subscriber/fc…
Browse files Browse the repository at this point in the history
…da-binding-list test, closes #1257 (#1274)
  • Loading branch information
danyill authored Jun 26, 2023
1 parent 42d8555 commit 8c620eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/editors/subscription/fcda-binding-list.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,15 +174,15 @@ describe('fcda-binding-list', () => {
(<ListItem>(
element.actionsMenu!.querySelector('.filter-subscribed')
))!.click();
await new Promise(resolve => setTimeout(resolve, 200)); // await animation
await new Promise(resolve => setTimeout(resolve, 300)); // await animation
await element.updateComplete;

element.actionsMenuIcon.click();
await element.updateComplete;
(<ListItem>(
element.actionsMenu!.querySelector('.filter-not-subscribed')
))!.click();
await new Promise(resolve => setTimeout(resolve, 200)); // await animation
await new Promise(resolve => setTimeout(resolve, 300)); // await animation
await element.updateComplete;

const fcdaList = element.shadowRoot?.querySelector('filtered-list');
Expand Down

0 comments on commit 8c620eb

Please sign in to comment.