Skip to content

Commit e6537bf

Browse files
committed
Fix e2e test configuration issues
- Fix test file path: buildVideoWithCallSDK.spec.ts -> buildVideoWithFabricSDK.spec.ts - Add correct path prefixes for callfabric tests (callfabric/*.spec.ts) - Fix renegotiation test paths to include callfabric/ prefix - Disable relayApp.spec.ts test that depends on removed @signalwire/realtime-api These configuration mismatches were causing e2e workflow failures.
1 parent d712597 commit e6537bf

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

internal/e2e-client/playwright.config.ts

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,29 @@ require('dotenv').config()
33
import { PlaywrightTestConfig, devices } from '@playwright/test'
44

55
const callfabricTests = [
6-
'address.spec.ts',
7-
'agent_customer.spec.ts',
8-
'audioFlags.spec.ts',
9-
'cleanup.spec.ts',
10-
'conversation.spec.ts',
11-
'deviceEvent.spec.ts',
12-
'deviceState.spec.ts',
13-
'holdunhold.spec.ts',
14-
'incomingCall.spec.ts',
15-
'mirrorVideo.spec.ts',
16-
'muteUnmuteAll.spec.ts',
17-
'raiseHand.spec.ts',
18-
'reattach.spec.ts',
19-
'relayApp.spec.ts',
20-
'swml.spec.ts',
21-
'videoRoom.spec.ts',
22-
'videoRoomLayout.spec.ts',
6+
'callfabric/address.spec.ts',
7+
'callfabric/agent_customer.spec.ts',
8+
'callfabric/audioFlags.spec.ts',
9+
'callfabric/cleanup.spec.ts',
10+
'callfabric/conversation.spec.ts',
11+
'callfabric/deviceEvent.spec.ts',
12+
'callfabric/deviceState.spec.ts',
13+
'callfabric/holdunhold.spec.ts',
14+
'callfabric/incomingCall.spec.ts',
15+
'callfabric/mirrorVideo.spec.ts',
16+
'callfabric/muteUnmuteAll.spec.ts',
17+
'callfabric/raiseHand.spec.ts',
18+
'callfabric/reattach.spec.ts',
19+
// 'callfabric/relayApp.spec.ts', // Disabled: depends on removed @signalwire/realtime-api
20+
'callfabric/swml.spec.ts',
21+
'callfabric/videoRoom.spec.ts',
22+
'callfabric/videoRoomLayout.spec.ts',
2323
]
2424
const renegotiationTests = [
25-
'renegotiateAudio.spec.ts',
26-
'renegotiateVideo.spec.ts',
25+
'callfabric/renegotiateAudio.spec.ts',
26+
'callfabric/renegotiateVideo.spec.ts',
2727
]
28-
const videoElementTests = ['buildVideoWithCallSDK.spec.ts']
28+
const videoElementTests = ['buildVideoWithFabricSDK.spec.ts']
2929

3030
const useDesktopChrome: PlaywrightTestConfig['use'] = {
3131
...devices['Desktop Chrome'],

0 commit comments

Comments
 (0)