Skip to content

Commit

Permalink
fix(app): remove only
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalmnt committed Jul 8, 2024
1 parent 51ea870 commit aa52680
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions app/__tests__/components/GenericPlatform.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ const { Ens } = platforms;

import { CeramicContextState } from "../../context/ceramicContext";
import { mockAddress } from "../../__test-fixtures__/onboardHookValues";
import {
UN_SUCCESSFUL_ENS_RESULT,
SUCCESFUL_ENS_RESULTS,
credential,
SUCCESFUL_ENS_RESULT,
} from "../../__test-fixtures__/verifiableCredentialResults";
import { UN_SUCCESSFUL_ENS_RESULT, SUCCESFUL_ENS_RESULTS } from "../../__test-fixtures__/verifiableCredentialResults";
import { fetchVerifiableCredential } from "@gitcoin/passport-identity";
import { makeTestCeramicContext, renderWithContext } from "../../__test-fixtures__/contextTestHelpers";
import { JsonRpcSigner } from "@ethersproject/providers";
Expand Down Expand Up @@ -203,7 +198,7 @@ describe("when user has previously verified with EnsProvider", () => {
expect(fetchVerifiableCredential).toHaveBeenCalled();
});
});
it.only("should remove expired stamps if the no longer qualify", async () => {
it("should remove expired stamps if the no longer qualify", async () => {
(fetchVerifiableCredential as jest.Mock).mockResolvedValue({
credentials: [UN_SUCCESSFUL_ENS_RESULT],
});
Expand Down

0 comments on commit aa52680

Please sign in to comment.