Skip to content
Merged
Show file tree
Hide file tree
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
14 changes: 7 additions & 7 deletions packages/livekit-rtc/src/tests/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ describeE2E('livekit-rtc e2e', () => {
await dispose();
});

it(
it.concurrent(
'connects to a room',
async () => {
const { roomName, rooms } = await connectTestRooms(1);
Expand All @@ -225,7 +225,7 @@ describeE2E('livekit-rtc e2e', () => {
testTimeoutMs,
);

it(
it.concurrent(
'connects multiple participants to the same room',
async () => {
const { roomName, rooms } = await connectTestRooms(2);
Expand All @@ -241,7 +241,7 @@ describeE2E('livekit-rtc e2e', () => {
testTimeoutMs,
);

it(
it.concurrent(
'emits participantDisconnected when a participant leaves',
async () => {
const { rooms } = await connectTestRooms(2);
Expand All @@ -267,7 +267,7 @@ describeE2E('livekit-rtc e2e', () => {
testTimeoutMs,
);

it(
it.concurrent(
'transfers audio between two participants (sine detection)',
async () => {
const cases = [
Expand Down Expand Up @@ -367,7 +367,7 @@ describeE2E('livekit-rtc e2e', () => {
testTimeoutMs * 2,
);

it(
it.concurrent(
'publishes and receives reliable data packets',
async () => {
const { rooms } = await connectTestRooms(2);
Expand Down Expand Up @@ -407,7 +407,7 @@ describeE2E('livekit-rtc e2e', () => {
testTimeoutMs,
);

it(
it.concurrent(
'sends and receives text and byte streams',
async () => {
const { rooms } = await connectTestRooms(2);
Expand Down Expand Up @@ -469,7 +469,7 @@ describeE2E('livekit-rtc e2e', () => {
testTimeoutMs,
);

it(
it.concurrent(
'invokes RPC methods and returns structured errors',
async () => {
const { rooms } = await connectTestRooms(2);
Expand Down
2 changes: 1 addition & 1 deletion packages/livekit-rtc/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// SPDX-FileCopyrightText: 2024 LiveKit, Inc.
//
// SPDX-License-Identifier: Apache-2.0

import { defineConfig } from 'vitest/config';

export default defineConfig({
test: {
environment: 'node',
maxConcurrency: 8,
},
});
Loading