Files
ThreadNet-Web/playwright/plugins/homeserver/synapse/uiaLongSessionTimeoutHomeserver.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
595 B
TypeScript
Raw Normal View History

/*
Copyright 2024 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
*/
2025-02-05 13:25:06 +00:00
import { type Fixtures } from "../../../element-web-test.ts";
2025-01-14 08:58:06 +00:00
export const uiaLongSessionTimeoutHomeserver: Fixtures = {
synapseConfig: [
async ({ synapseConfig }, use) => {
await use({
2025-01-14 08:58:06 +00:00
...synapseConfig,
ui_auth: {
session_timeout: "300s",
},
});
},
{ scope: "worker" },
],
};