From 9e561036af704be1f9a3e7fe599186c0bc2af23b Mon Sep 17 00:00:00 2001 From: Berend Sliedrecht <berend@animo.id> Date: Fri, 2 Feb 2024 10:57:15 +0100 Subject: [PATCH] feat: use credo-ts Signed-off-by: Berend Sliedrecht <berend@animo.id> --- apps/ssi-abstraction/test/revocation.e2e-spec.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/ssi-abstraction/test/revocation.e2e-spec.ts b/apps/ssi-abstraction/test/revocation.e2e-spec.ts index 9d58fb4..a9f14ce 100644 --- a/apps/ssi-abstraction/test/revocation.e2e-spec.ts +++ b/apps/ssi-abstraction/test/revocation.e2e-spec.ts @@ -1,7 +1,6 @@ import type { INestApplication } from '@nestjs/common'; import type { ClientProxy } from '@nestjs/microservices'; import type { - EventAnonCredsCredentialsGetAllInput, EventAnonCredsRevocationRegisterRevocationRegistryDefinitionInput, EventAnonCredsRevocationRegisterRevocationStatusListInput, EventAnonCredsRevocationRevokeInput, @@ -11,7 +10,6 @@ import type { import { ClientsModule, Transport } from '@nestjs/microservices'; import { Test } from '@nestjs/testing'; import { - EventAnonCredsCredentialsGetAll, EventDidcommAnonCredsCredentialsOfferToSelf, EventAnonCredsRevocationRegisterRevocationRegistryDefinition, EventAnonCredsRevocationRegisterRevocationStatusList, @@ -112,7 +110,7 @@ describe('Revocation', () => { client.close(); }); - xit( + it( EventAnonCredsRevocationRegisterRevocationRegistryDefinition.token, async () => { const response$ = client.send< @@ -139,7 +137,7 @@ describe('Revocation', () => { }, ); - xit(EventAnonCredsRevocationRegisterRevocationStatusList.token, async () => { + it(EventAnonCredsRevocationRegisterRevocationStatusList.token, async () => { let revRegDefId: string = ''; { const response$ = client.send< -- GitLab