()
| 5 | const form = createForm({ onSubmit: () => {} }) |
| 6 | const spy = jest.fn() |
| 7 | const last = () => spy.mock.calls.at(-1)[0] |
| 8 | form.subscribe(spy, { initialValues: true, values: true, dirty: true }) |
| 9 | expect(spy).toHaveBeenCalledTimes(1) |
| 10 | expect(spy.mock.calls[0][0].initialValues).toBeUndefined() |
no outgoing calls
no test coverage detected
searching dependent graphs…