We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3698be commit e528ca5Copy full SHA for e528ca5
webauthn-server-core/src/test/scala/com/yubico/webauthn/RelyingPartyRegistrationSpec.scala
@@ -258,12 +258,20 @@ class RelyingPartyRegistrationSpec
258
},
259
"clientExtensionResults": {
260
"appidExclude": true,
261
- "org.example.foo": "bar"
+ "org.example.foo": "bar",
262
+ "credProps": {
263
+ "rk": false,
264
+ "unknownProperty": ["unknown-value"]
265
+ }
266
}
267
}""")
268
pkc.getClientExtensionResults.getExtensionIds should contain(
269
"appidExclude"
270
)
271
+ pkc.getClientExtensionResults.getExtensionIds should contain(
272
+ "credProps"
273
+ )
274
+ pkc.getClientExtensionResults.getExtensionIds should not contain ("org.example.foo")
275
276
277
0 commit comments