Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Jun 24, 2024
1 parent 39bae8d commit cb0aec7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,6 @@ describe("<ViewProgram />", () => {
];

const stubProgram = makeProgramData({ id: programId, operatorWallets });
(useWallet as jest.Mock).mockReturnValue({
chain: {},
address: stubProgram.operatorWallets[0],
provider: { getNetwork: () => Promise.resolve({ chainId: "0x0" }) },
});

render(
wrapWithReadProgramContext(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,20 +193,6 @@ describe("<RoundApplicationForm />", () => {
});

describe("Application Form Builder", () => {
beforeEach(() => {
(useWallet as jest.Mock).mockReturnValue({
chain: { name: "my blockchain" },
provider: {
getNetwork: () => ({
chainId: 0,
}),
},
signer: {
getChainId: () => 0,
},
address: "0x0",
});
});

it("displays the four default questions", () => {
renderWithContext(
Expand Down Expand Up @@ -612,20 +598,6 @@ describe("Application Form Builder", () => {
});
});
describe("Project Socials", () => {
beforeEach(() => {
(useWallet as jest.Mock).mockReturnValue({
chain: { name: "my blockchain" },
provider: {
getNetwork: () => ({
chainId: 0,
}),
},
signer: {
getChainId: () => 0,
},
address: "0x0",
});
});

it("displays the Project Socials", () => {
renderWithContext(
Expand Down

0 comments on commit cb0aec7

Please sign in to comment.