Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ import {createVerificationController} from '@docknetwork/wallet-sdk-core/src/ver
import {ProofTemplateIds, createProofRequest} from '../helpers/certs-helpers';
import { bbsPlusRevocationCredential, credentialWithUpdatedWitness } from './bbs-plus-revocation-credentials';

// TODO: Investigate CI failures - test passes locally but fails in CI due to network/accumulator access issues
describe.skip('BBS+ revocation', () => {
// Skip in CI due to network/accumulator access issues - passes locally
const describeOrSkip = process.env.CI ? describe.skip : describe;

describeOrSkip('BBS+ revocation', () => {
it('should verify a revokable bbs+ credential', async () => {
const wallet: IWallet = await getWallet();

Expand Down
Loading