Skip to content

Commit

Permalink
Switch over from template to container hs
Browse files Browse the repository at this point in the history
  • Loading branch information
MidhunSureshR committed Jan 8, 2025
1 parent 04413ed commit 9d35514
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 162 deletions.
7 changes: 6 additions & 1 deletion playwright/e2e/right-panel/memberlist.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@ const NAME = "Alice";

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

Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 4 additions & 0 deletions playwright/testcontainers/synapse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ const DEFAULT_CONFIG = {
experimental_features: {},
oidc_providers: [],
serve_server_wellknown: true,
presence: {
enabled: true,
include_offline_users_on_sync: true,
},
};

export type SynapseConfigOptions = Partial<typeof DEFAULT_CONFIG>;
Expand Down

0 comments on commit 9d35514

Please sign in to comment.