From d1534ec64e7a1e8c4b5f9ba477454ad84d1a4fc5 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Sat, 24 Jun 2023 14:16:25 +0200 Subject: [PATCH] www-authenticate --- packages/backend/test/e2e/oauth.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/backend/test/e2e/oauth.ts b/packages/backend/test/e2e/oauth.ts index f5b87b1b2..ec6e5da71 100644 --- a/packages/backend/test/e2e/oauth.ts +++ b/packages/backend/test/e2e/oauth.ts @@ -659,7 +659,8 @@ describe('OAuth', () => { // "The access token provided is expired, revoked, malformed, or // invalid for other reasons. The resource SHOULD respond with // the HTTP 401 (Unauthorized) status code." - await assertDirectError(createResponse as Response, 401, 'invalid_token'); + assert.strictEqual(createResponse.status, 401); + assert.ok(createResponse.headers.has('WWW-Authenticate')); }); // https://datatracker.ietf.org/doc/html/rfc6749.html#section-3.1.2.4