diff options
Diffstat (limited to 'packages/server/src')
-rw-r--r-- | packages/server/src/attestation/generateAttestationOptions.test.ts | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/packages/server/src/attestation/generateAttestationOptions.test.ts b/packages/server/src/attestation/generateAttestationOptions.test.ts index 112586a..ff1fcba 100644 --- a/packages/server/src/attestation/generateAttestationOptions.test.ts +++ b/packages/server/src/attestation/generateAttestationOptions.test.ts @@ -31,22 +31,16 @@ test('should generate credential request options suitable for sending via JSON', displayName: userName, }, pubKeyCredParams: [ - { - alg: -7, - type: 'public-key', - }, - { - alg: -35, - type: 'public-key', - }, - { - alg: -36, - type: 'public-key', - }, - { - alg: -8, - type: 'public-key', - }, + { alg: -7, type: 'public-key' }, + { alg: -8, type: 'public-key' }, + { alg: -36, type: 'public-key' }, + { alg: -37, type: 'public-key' }, + { alg: -38, type: 'public-key' }, + { alg: -39, type: 'public-key' }, + { alg: -257, type: 'public-key' }, + { alg: -258, type: 'public-key' }, + { alg: -259, type: 'public-key' }, + { alg: -65535, type: 'public-key' }, ], timeout, attestation: attestationType, |