Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions packages/calling/playwright/constants/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,10 @@ export const CALLING_SELECTORS = {
INCOMING_CALL: '#incoming-call',
CALL_QUALITY_METRICS: '#call-quality-metrics',

// Call History
CALL_HISTORY_BTN: '#Call-history',
CALL_HISTORY_HEADER: '#callHistoryHeaderId',
CALL_HISTORY_TABLE_BODY: '#callHistoryTableId',

END_BTN: '#end',
};
2 changes: 2 additions & 0 deletions packages/calling/playwright/suites/set-2user.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ import {callLifecycleTests, callLifecycleMediaTests} from '../test-groups/call-l
import {callControlTests, callHoldTests, callHoldErrorTests} from '../test-groups/call-controls';
import {callErrorTests, callEdgeCaseTests} from '../test-groups/call-errors';
import {callKeepaliveTests} from '../test-groups/call-keepalive';
import {callHistoryTests} from '../test-groups/call-history';

// Each group gets its own fresh browser contexts via beforeAll.
// Account roles resolved from testInfo.project.name → USER_SETS.
callLifecycleTests();
callLifecycleMediaTests();
callHistoryTests();

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can use a different suite for this. The call history tests can be run in parallel

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I moved Call History into its own suite: set-2user-call-history.spec.ts, and added separate SET_2USER_CALL_HISTORY Playwright projects so it can run independently/parallel where account dependencies allow.

callKeepaliveTests();
callErrorTests();
callEdgeCaseTests();
Expand Down
Loading
Loading