From 80b044af94ce730230fcf5239d7bf1de1331abb6 Mon Sep 17 00:00:00 2001 From: Benoit Serrano Date: Wed, 9 Oct 2024 16:25:42 +0200 Subject: [PATCH] add new scope and acr values in test --- test/oidcAuthTest.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/oidcAuthTest.js b/test/oidcAuthTest.js index b4595a73..6cdafc91 100644 --- a/test/oidcAuthTest.js +++ b/test/oidcAuthTest.js @@ -64,7 +64,8 @@ describe("oidcAuth", function() { expect(request.redirectUrl).to.equal(redirectUrl) sinon.assert.calledWith(authorizationUrlStub.getCall(0), { - scope: "openid", + scope: "openid uid email", + acr_values: "eidas1", state: sinon.match.string, nonce: sinon.match.string, }