diff --git a/package.json b/package.json index 57fea592b..dd869d8d3 100644 --- a/package.json +++ b/package.json @@ -24,11 +24,7 @@ "email": "blockchain-lab@um.si", "url": "https://blockchain-lab.um.si" }, - "workspaces": [ - "packages/*", - "apps/**/*", - "libs/**/*" - ], + "scripts": { "build": "pnpm nx run-many --target=build", "build:docker": "./scripts/build-docker.sh", diff --git a/packages/snap/tests/e2e/resolveDID.spec.ts b/packages/snap/tests/e2e/resolveDID.spec.ts index ad7dec2c1..e1f934315 100644 --- a/packages/snap/tests/e2e/resolveDID.spec.ts +++ b/packages/snap/tests/e2e/resolveDID.spec.ts @@ -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();