it('should call validate with initial values on first mount', () => {
    const values = {foo: 'bar'};
    const validate = jest.fn<void, [{foo: any}]>();

    render(<Form.Form values={values} validate={validate} />);