refactor(core): Port SSO config (#17044)

This commit is contained in:
Iván Ovejero
2025-07-07 16:59:35 +02:00
committed by GitHub
parent 044b0bb330
commit 982a7a11f5
13 changed files with 116 additions and 90 deletions

View File

@@ -18,7 +18,10 @@ const testServer = utils.setupTestServer({ endpointGroups: ['me'] });
beforeEach(async () => {
await testDb.truncate(['User']);
mockInstance(GlobalConfig, { publicApi: { disabled: false } });
mockInstance(GlobalConfig, {
publicApi: { disabled: false },
sso: { saml: { loginEnabled: true } },
});
});
describe('Owner shell', () => {