Review dev #231
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
unit-tests.yml
on: pull_request
Matrix: Run unit and stack tests
Matrix: Run browser SDK production e2e tests / Run E2E tests
Matrix: Run browser SDK staging e2e tests / Run E2E tests
Matrix: Run RealtimeAPI SDK production e2e tests / Run E2E tests
Matrix: Run RealtimeAPI SDK staging e2e tests / Run E2E tests
Annotations
11 errors, 14 warnings, and 6 notices
[default] › callfabric/relayApp.spec.ts:11:7 › CallFabric Relay Application › should connect to the relay app and expect an audio playback:
internal/e2e-js/tests/callfabric/relayApp.spec.ts#L14
1) [default] › callfabric/relayApp.spec.ts:11:7 › CallFabric Relay Application › should connect to the relay app and expect an audio playback
TypeError: _realtimeApi.Voice.Client is not a constructor
12 | createCustomPage,
13 | }) => {
> 14 | const client = new Voice.Client({
| ^
15 | host: process.env.RELAY_HOST,
16 | project: process.env.CF_RELAY_PROJECT as string,
17 | token: process.env.CF_RELAY_TOKEN as string,
at /home/runner/work/signalwire-js/signalwire-js/internal/e2e-js/tests/callfabric/relayApp.spec.ts:14:20
|
[default] › callfabric/relayApp.spec.ts:84:7 › CallFabric Relay Application › should connect to the relay app and expect a silence:
internal/e2e-js/tests/callfabric/relayApp.spec.ts#L87
2) [default] › callfabric/relayApp.spec.ts:84:7 › CallFabric Relay Application › should connect to the relay app and expect a silence
TypeError: _realtimeApi.Voice.Client is not a constructor
85 | createCustomPage,
86 | }) => {
> 87 | const client = new Voice.Client({
| ^
88 | host: process.env.RELAY_HOST,
89 | project: process.env.CF_RELAY_PROJECT as string,
90 | token: process.env.CF_RELAY_TOKEN as string,
at /home/runner/work/signalwire-js/signalwire-js/internal/e2e-js/tests/callfabric/relayApp.spec.ts:87:20
|
[default] › callfabric/relayApp.spec.ts:157:7 › CallFabric Relay Application › should connect to the relay app and expect a hangup:
internal/e2e-js/tests/callfabric/relayApp.spec.ts#L160
3) [default] › callfabric/relayApp.spec.ts:157:7 › CallFabric Relay Application › should connect to the relay app and expect a hangup
TypeError: _realtimeApi.Voice.Client is not a constructor
158 | createCustomPage,
159 | }) => {
> 160 | const client = new Voice.Client({
| ^
161 | host: process.env.RELAY_HOST,
162 | project: process.env.CF_RELAY_PROJECT as string,
163 | token: process.env.CF_RELAY_TOKEN as string,
at /home/runner/work/signalwire-js/signalwire-js/internal/e2e-js/tests/callfabric/relayApp.spec.ts:160:20
|
Run browser SDK production e2e tests / Run E2E tests (18.x, default)
Process completed with exit code 1.
|
[default] › callfabric/relayApp.spec.ts:11:7 › CallFabric Relay Application › should connect to the relay app and expect an audio playback:
internal/e2e-js/tests/callfabric/relayApp.spec.ts#L14
1) [default] › callfabric/relayApp.spec.ts:11:7 › CallFabric Relay Application › should connect to the relay app and expect an audio playback
TypeError: _realtimeApi.Voice.Client is not a constructor
12 | createCustomPage,
13 | }) => {
> 14 | const client = new Voice.Client({
| ^
15 | host: process.env.RELAY_HOST,
16 | project: process.env.CF_RELAY_PROJECT as string,
17 | token: process.env.CF_RELAY_TOKEN as string,
at /home/runner/work/signalwire-js/signalwire-js/internal/e2e-js/tests/callfabric/relayApp.spec.ts:14:20
|
[default] › callfabric/relayApp.spec.ts:84:7 › CallFabric Relay Application › should connect to the relay app and expect a silence:
internal/e2e-js/tests/callfabric/relayApp.spec.ts#L87
2) [default] › callfabric/relayApp.spec.ts:84:7 › CallFabric Relay Application › should connect to the relay app and expect a silence
TypeError: _realtimeApi.Voice.Client is not a constructor
85 | createCustomPage,
86 | }) => {
> 87 | const client = new Voice.Client({
| ^
88 | host: process.env.RELAY_HOST,
89 | project: process.env.CF_RELAY_PROJECT as string,
90 | token: process.env.CF_RELAY_TOKEN as string,
at /home/runner/work/signalwire-js/signalwire-js/internal/e2e-js/tests/callfabric/relayApp.spec.ts:87:20
|
[default] › callfabric/relayApp.spec.ts:157:7 › CallFabric Relay Application › should connect to the relay app and expect a hangup:
internal/e2e-js/tests/callfabric/relayApp.spec.ts#L160
3) [default] › callfabric/relayApp.spec.ts:157:7 › CallFabric Relay Application › should connect to the relay app and expect a hangup
TypeError: _realtimeApi.Voice.Client is not a constructor
158 | createCustomPage,
159 | }) => {
> 160 | const client = new Voice.Client({
| ^
161 | host: process.env.RELAY_HOST,
162 | project: process.env.CF_RELAY_PROJECT as string,
163 | token: process.env.CF_RELAY_TOKEN as string,
at /home/runner/work/signalwire-js/signalwire-js/internal/e2e-js/tests/callfabric/relayApp.spec.ts:160:20
|
[default] › callfabric/videoRoom.spec.ts:12:7 › CallFabric VideoRoom › should handle joining a room:
internal/e2e-js/tests/callfabric/videoRoom.spec.ts#L144
4) [default] › callfabric/videoRoom.spec.ts:12:7 › CallFabric VideoRoom › should handle joining a room, perform actions and then leave the room
Error: expect(received).toStrictEqual(expected) // deep equality
- Expected - 3
+ Received + 1
- Object {
- "something": "xx-yy-zzz",
- }
+ Object {}
142 | return roomObj.getMeta()
143 | })
> 144 | expect(currentMeta.meta).toStrictEqual(expected)
| ^
145 | }
146 | await expectRoomMeta({})
147 |
at expectRoomMeta (/home/runner/work/signalwire-js/signalwire-js/internal/e2e-js/tests/callfabric/videoRoom.spec.ts:144:32)
at /home/runner/work/signalwire-js/signalwire-js/internal/e2e-js/tests/callfabric/videoRoom.spec.ts:161:5
|
Run browser SDK staging e2e tests / Run E2E tests (18.x, default)
Process completed with exit code 1.
|
Run RealtimeAPI SDK staging e2e tests / Run E2E tests (18.x)
Process completed with exit code 1.
|
Run RealtimeAPI SDK production e2e tests / Run E2E tests (18.x)
Process completed with exit code 1.
|
Slow Test:
internal/e2e-js/[default] › roomSessionJoinFrom.spec.ts#L1
internal/e2e-js/[default] › roomSessionJoinFrom.spec.ts took 45.3s
|
Slow Test:
internal/e2e-js/[default] › roomSessionPromoteReattachDemote.spec.ts#L1
internal/e2e-js/[default] › roomSessionPromoteReattachDemote.spec.ts took 38.8s
|
Slow Test:
internal/e2e-js/[slow] › roomSessionAudienceCount.spec.ts#L1
internal/e2e-js/[slow] › roomSessionAudienceCount.spec.ts took 1.0m
|
Slow Test:
internal/e2e-js/[default] › roomSessionPromoteDemote.spec.ts#L1
internal/e2e-js/[default] › roomSessionPromoteDemote.spec.ts took 35.8s
|
Slow Test:
internal/e2e-js/[slow] › roomSessionBadNetwork.spec.ts#L1
internal/e2e-js/[slow] › roomSessionBadNetwork.spec.ts took 51.1s
|
Slow Test:
internal/e2e-js/[default] › roomSession.spec.ts#L1
internal/e2e-js/[default] › roomSession.spec.ts took 35.7s
|
Slow Test:
internal/e2e-js/[default] › roomSessionDemote.spec.ts#L1
internal/e2e-js/[default] › roomSessionDemote.spec.ts took 31.6s
|
Slow Test:
internal/e2e-js/[default] › roomSessionJoinFrom.spec.ts#L1
internal/e2e-js/[default] › roomSessionJoinFrom.spec.ts took 47.5s
|
Slow Test:
internal/e2e-js/[default] › roomSessionPromoteDemote.spec.ts#L1
internal/e2e-js/[default] › roomSessionPromoteDemote.spec.ts took 40.9s
|
Slow Test:
internal/e2e-js/[default] › roomSessionPromoteReattachDemote.spec.ts#L1
internal/e2e-js/[default] › roomSessionPromoteReattachDemote.spec.ts took 39.6s
|
Slow Test:
internal/e2e-js/[default] › roomSession.spec.ts#L1
internal/e2e-js/[default] › roomSession.spec.ts took 39.4s
|
Slow Test:
internal/e2e-js/[default] › roomSessionDemote.spec.ts#L1
internal/e2e-js/[default] › roomSessionDemote.spec.ts took 32.4s
|
Slow Test:
internal/e2e-js/[slow] › roomSessionBadNetwork.spec.ts#L1
internal/e2e-js/[slow] › roomSessionBadNetwork.spec.ts took 50.8s
|
Slow Test:
internal/e2e-js/[slow] › roomSessionAudienceCount.spec.ts#L1
internal/e2e-js/[slow] › roomSessionAudienceCount.spec.ts took 46.7s
|
🎭 Playwright Run Summary
2 passed (16.2s)
|
🎭 Playwright Run Summary
2 passed (1.9m)
|
🎭 Playwright Run Summary
3 failed
[default] › callfabric/relayApp.spec.ts:11:7 › CallFabric Relay Application › should connect to the relay app and expect an audio playback
[default] › callfabric/relayApp.spec.ts:84:7 › CallFabric Relay Application › should connect to the relay app and expect a silence
[default] › callfabric/relayApp.spec.ts:157:7 › CallFabric Relay Application › should connect to the relay app and expect a hangup
60 passed (10.9m)
|
🎭 Playwright Run Summary
4 failed
[default] › callfabric/relayApp.spec.ts:11:7 › CallFabric Relay Application › should connect to the relay app and expect an audio playback
[default] › callfabric/relayApp.spec.ts:84:7 › CallFabric Relay Application › should connect to the relay app and expect a silence
[default] › callfabric/relayApp.spec.ts:157:7 › CallFabric Relay Application › should connect to the relay app and expect a hangup
[default] › callfabric/videoRoom.spec.ts:12:7 › CallFabric VideoRoom › should handle joining a room, perform actions and then leave the room
59 passed (11.6m)
|
🎭 Playwright Run Summary
2 passed (17.3s)
|
🎭 Playwright Run Summary
2 passed (1.6m)
|