diff options
author | Matthew Miller <matthew@millerti.me> | 2020-09-09 21:57:38 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-09-09 21:57:38 -0700 |
commit | 0883d03d3341b6478b939ead7830733a0af0427f (patch) | |
tree | 607d69dd8ea0d8cbb634e2e9c526ad75901a98e4 | |
parent | 417c5c71bd4ee1a72539897bd4bc2a68c7c56b57 (diff) |
Clarify in test that any TPM assertion will do
-rw-r--r-- | packages/server/src/assertion/verifyAssertionResponse.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/assertion/verifyAssertionResponse.test.ts b/packages/server/src/assertion/verifyAssertionResponse.test.ts index 8cc7c15..3f97959 100644 --- a/packages/server/src/assertion/verifyAssertionResponse.test.ts +++ b/packages/server/src/assertion/verifyAssertionResponse.test.ts @@ -177,7 +177,7 @@ test('should throw an error if user verification is required but user was not ve }); // TODO: Get a real TPM assertion in here -test.skip('should verify Windows 10 TPM assertion', () => { +test.skip('should verify TPM assertion', () => { const expectedChallenge = 'dG90YWxseVVuaXF1ZVZhbHVlRXZlcnlBc3NlcnRpb24'; jest.spyOn(base64url, 'encode').mockReturnValueOnce(expectedChallenge); const verification = verifyAssertionResponse({ |