Fix typecheck: cast DUMMY_EV_ROW to any in test fixture
ParticipantEV has additional required fields (id, participantId, etc.) that aren't needed for the mock — cast to any to satisfy the type checker. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
af790cca50
commit
b2ef5e208e
1 changed files with 1 additions and 1 deletions
|
|
@ -84,7 +84,7 @@ const DUMMY_EV_ROW = {
|
|||
probSixth: "0.1",
|
||||
probSeventh: "0.2",
|
||||
probEighth: "0.2",
|
||||
};
|
||||
} as any;
|
||||
|
||||
beforeEach(() => {
|
||||
vi.clearAllMocks();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue