Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,8 @@ test('Activity Feed Widget', async ({ page }) => {
await test.step('Test widget filters', async () => {
await waitForAllLoadersToDisappear(page);
await waitForAllLoadersToDisappear(page, 'entity-list-skeleton');
// wait for first card visible before applying filters
await expect(page.getByTestId('task-feed-card').first()).toBeVisible();
Comment thread
chirag-madlani marked this conversation as resolved.
Outdated
await verifyActivityFeedFilters(page, widgetKey);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,19 @@ test.describe.serial('Default persona setting and removal flow', () => {
await afterAction();
});

test.afterAll(
'Teardown user for default persona flow',
async ({ browser }) => {
const { apiContext, afterAction } = await createNewPage(browser);
await Promise.all([
user.delete(apiContext),
persona1.delete(apiContext),
persona2.delete(apiContext),
]);
Comment on lines +314 to +318
await afterAction();
Comment thread
chirag-madlani marked this conversation as resolved.
}
);

test('Set and remove default persona should work properly', async ({
adminPage,
browser,
Expand Down
Loading