fix(test): add saml key to config.test.ts inline snapshots

Branch-level config schema now includes auth.saml.connections (default
{}), so getConfig surfaces it. Update the three inline snapshots that
serialize the full auth object to match.
This commit is contained in:
Bilal Godil 2026-04-30 09:33:35 -07:00
parent f7a487f001
commit 90a9852c99

View File

@ -130,6 +130,7 @@ describe("getConfig", () => {
"otp": { "allowSignIn": false },
"passkey": { "allowSignIn": false },
"password": { "allowSignIn": true },
"saml": { "connections": {} },
"signUpRules": {},
"signUpRulesDefaultAction": "allow",
},
@ -159,6 +160,7 @@ describe("updateConfig", () => {
"otp": { "allowSignIn": false },
"passkey": { "allowSignIn": false },
"password": { "allowSignIn": true },
"saml": { "connections": {} },
"signUpRules": {},
"signUpRulesDefaultAction": "allow",
}
@ -179,6 +181,7 @@ describe("updateConfig", () => {
"otp": { "allowSignIn": false },
"passkey": { "allowSignIn": false },
"password": { "allowSignIn": true },
"saml": { "connections": {} },
"signUpRules": {},
"signUpRulesDefaultAction": "allow",
}