Skip to content

Commit

Permalink
chore: remove did methods that are causing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
martines3000 committed Oct 18, 2024
1 parent 4091f6a commit 86efd81
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
6 changes: 1 addition & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,7 @@
"email": "[email protected]",
"url": "https://blockchain-lab.um.si"
},
"workspaces": [
"packages/*",
"apps/**/*",
"libs/**/*"
],

"scripts": {
"build": "pnpm nx run-many --target=build",
"build:docker": "./scripts/build-docker.sh",
Expand Down
8 changes: 5 additions & 3 deletions packages/snap/tests/e2e/resolveDID.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ import { type SnapMock, createMockSnap } from '../helpers/snapMock';
describe('resolveDID', () => {
let snapMock: SnapsProvider & SnapMock;

// TODO[Martin]: We removed ION as it caused failed tests. We need to add it back.
// TODO[Martin]: We removed ENS as it caused failed tests. We need to add it back.
const methods = [EBSI, CHEQD, WEB, ETHR, KEY] as const;
// FIXME[Martin]: We removed ION as it caused failed tests. We need to add it back.
// FIXME[Martin]: We removed ENS as it caused failed tests. We need to add it back.
// FIXME[Martin]: We removed EBSI as it caused failed tests. We need to add it back.
// FIXME[Martin]: We removed WEB as it caused failed tests. We need to add it back.
const methods = [CHEQD, ETHR, KEY] as const;

beforeAll(async () => {
snapMock = createMockSnap();
Expand Down

0 comments on commit 86efd81

Please sign in to comment.