Skip to content

Commit

Permalink
chore: disable ENS test for snap
Browse files Browse the repository at this point in the history
  • Loading branch information
martines3000 committed May 10, 2024
1 parent 1288bc9 commit 7e47a6c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/snap/tests/e2e/resolveDID.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ import { beforeAll, describe, expect, it } from 'vitest';
import { onRpcRequest } from '../../src';
import { account } from '../data/constants';
import { getDefaultSnapState } from '../data/defaultSnapState';
import { CHEQD, EBSI, ENS, ETHR, KEY, WEB } from '../data/documentResolution';
import { CHEQD, EBSI, ETHR, KEY, WEB } from '../data/documentResolution';
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.
const methods = [EBSI, ENS, CHEQD, WEB, ETHR, KEY] as const;
// 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;

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

0 comments on commit 7e47a6c

Please sign in to comment.