Skip to content

Commit 6036390

Browse files
committed
review
1 parent 025a2dc commit 6036390

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/livekit/MatrixAudioRenderer.test.tsx

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,6 @@ it("should render for member", () => {
5959
expect(queryAllByTestId("audio")).toHaveLength(1);
6060
});
6161

62-
it("should not render without member", () => {
63-
const { container, queryAllByTestId } = render(
64-
<MatrixAudioRenderer
65-
members={[{ sender: "othermember", deviceId: "123" }] as CallMembership[]}
66-
/>,
67-
);
68-
expect(container).toBeTruthy();
69-
expect(queryAllByTestId("audio")).toHaveLength(0);
70-
});
71-
7262
it("should not render without member", () => {
7363
const memberships = [
7464
{ sender: "othermember", deviceId: "123" },
@@ -78,7 +68,6 @@ it("should not render without member", () => {
7868
);
7969
expect(container).toBeTruthy();
8070
expect(queryAllByTestId("audio")).toHaveLength(0);
81-
8271
});
8372

8473
it("should not setup audioContext gain and pan if there is no need to.", () => {

0 commit comments

Comments
 (0)