Skip to content

Commit

Permalink
fix src/tests/workflows/NnsProposalDetail.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
dskloetd committed Jul 15, 2024
1 parent b55cd22 commit aca469a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/src/tests/workflows/NnsProposalDetail.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ describe("Proposal detail page when not logged in user", () => {
expect(governanceApi.queryNeurons).toHaveBeenCalledWith({
identity: mockIdentity,
certified: true,
includeEmptyNeurons: false,
})
);

Expand Down Expand Up @@ -160,11 +161,13 @@ describe("Proposal detail page when not logged in user", () => {
expect(governanceApi.queryNeurons).toHaveBeenCalledWith({
identity: mockIdentity,
certified: true,
includeEmptyNeurons: false,
})
);
expect(governanceApi.queryNeurons).toHaveBeenCalledWith({
identity: mockIdentity,
certified: false,
includeEmptyNeurons: false,
});
});
});
Expand Down

0 comments on commit aca469a

Please sign in to comment.