feat(tests): added testing DB

This commit is contained in:
ribardej
2025-10-29 13:42:01 +01:00
parent e460f647b2
commit cf1d520a30
2 changed files with 38 additions and 6 deletions

View File

@@ -19,7 +19,7 @@ def test_get_oauth_provider_known_unknown():
def test_get_jwt_strategy_lifetime():
strategy = user_service.get_jwt_strategy()
assert strategy is not None
# Basic smoke check: strategy has a lifetime set to 3600
# Basic smoke check: strategy has a lifetime set to 604800
assert getattr(strategy, "lifetime_seconds", None) in (604800,)