This commit is contained in:
parent
5b48e0bfdb
commit
d92456e141
6 changed files with 95 additions and 36 deletions
|
|
@ -84,9 +84,11 @@ namespace Yavsc.Org.Tests
|
|||
[Fact]
|
||||
public async Task GetOpenIdConfiguration_returns_ok()
|
||||
{
|
||||
using var client = _serverFixture.CreateHttpClient();
|
||||
using var client = CreateHttpClient();
|
||||
var response = await GetRaw(client, "/.well-known/openid-configuration");
|
||||
var payload = await response.Content.ReadAsStringAsync();
|
||||
var payload = await response.Content.ReadAsStringAsync(
|
||||
TestContext.Current.CancellationToken
|
||||
);
|
||||
|
||||
Assert.True(
|
||||
response.IsSuccessStatusCode,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue