Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,6 @@ test.afterAll('Cleanup delete admin user', async ({ browser }) => {
});

test.describe('Activity API - Entity Changes', () => {
test.describe.configure({ timeout: 120000 });

test.beforeAll('Setup: create entities and users', async ({ browser }) => {
const { apiContext, afterAction } = await performAdminLogin(browser);
testTable = new TableClass();
Expand Down Expand Up @@ -186,6 +184,7 @@ test.describe('Activity API - Entity Changes', () => {
test('Activity event is created when description is updated', async ({
page,
}) => {
test.setTimeout(300000);
const newDescription = `Test description updated at ${Date.now()}`;
const entityFqn = testTable.entityResponseData.fullyQualifiedName ?? '';

Expand Down Expand Up @@ -225,6 +224,7 @@ test.describe('Activity API - Entity Changes', () => {
});

test('Activity event is created when tags are added', async ({ page }) => {
test.setTimeout(300000);
const entityFqn = testTable.entityResponseData.fullyQualifiedName ?? '';

// Add tag via API to bypass search indexing issues
Expand Down Expand Up @@ -274,6 +274,7 @@ test.describe('Activity API - Entity Changes', () => {
});

test('Activity event is created when owner is added', async ({ page }) => {
test.setTimeout(300000);
const entityFqn = testTable.entityResponseData.fullyQualifiedName ?? '';
const ownerDisplayName = adminUser.getUserDisplayName();

Expand Down Expand Up @@ -303,6 +304,7 @@ test.describe('Activity API - Entity Changes', () => {
test('Activity event shows the actor who made the change', async ({
page,
}) => {
test.setTimeout(300000);
// Make a change via API so we know exactly who the actor is
const { apiContext, afterAction } = await getApiContext(page);
const uniqueDescription = `Actor test description ${Date.now()}`;
Expand Down
Loading