tests(api): add integration test for happy path when logging in

This commit is contained in:
Stevan Freeborn
2026-02-02 13:33:23 -06:00
parent dcc5b2e0f0
commit 5a5efbefd7
10 changed files with 63 additions and 16 deletions
+6
View File
@@ -4,6 +4,12 @@ internal sealed record Response
{
public string AccessToken { get; init; }
[JsonConstructor]
private Response()
{
AccessToken = string.Empty;
}
private Response(string accessToken)
{
AccessToken = accessToken;