Skip to content

Commit

Permalink
Move config to top level
Browse files Browse the repository at this point in the history
  • Loading branch information
MidhunSureshR committed Jan 8, 2025
1 parent 37a6d09 commit 2bf96cc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions playwright/e2e/right-panel/memberlist.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ import { Bot } from "../../pages/bot";
const ROOM_NAME = "Test room";
const NAME = "Alice";

test.describe("Memberlist", () => {
test.use({
synapseConfigOptions: {
presence: {
enabled: false,
include_offline_users_on_sync: false,
},
test.use({
synapseConfigOptions: {
presence: {
enabled: false,
include_offline_users_on_sync: false,
},
displayName: NAME,
disablePresence: true,
});
},
displayName: NAME,
disablePresence: true,
});

test.describe("Memberlist", () => {
test.beforeEach(async ({ app, user, page, homeserver }, testInfo) => {
testInfo.setTimeout(testInfo.timeout + 30_000);
const id = await app.client.createRoom({ name: ROOM_NAME });
Expand Down

0 comments on commit 2bf96cc

Please sign in to comment.