( state: HookRegistryState, fixtureId: string, )
| 451 | } |
| 452 | |
| 453 | export function removeSavedFixture( |
| 454 | state: HookRegistryState, |
| 455 | fixtureId: string, |
| 456 | ): void { |
| 457 | state.fixtures = state.fixtures.filter((fixture) => fixture.id !== fixtureId) |
| 458 | } |
| 459 | |
| 460 | export function replaceSavedFixtures( |
| 461 | state: HookRegistryState, |
no outgoing calls
no test coverage detected