Code Monkey home page Code Monkey logo

Comments (9)

sangel10 avatar sangel10 commented on May 26, 2024 4

I had this issue and it turns out I'd forgotten to wrap the component with reduxForm, doing that got it to work.

export default (reduxForm({
  form: formName,
})(MyComponent));

from redux-form-test.

mbanda1 avatar mbanda1 commented on May 26, 2024 4
import React from 'react'
import { Field, reduxForm } from 'redux-form'

class TrackerView extends Component {
render(){
  <form onSubmit={handleSubmit}>
<div>
        <label>Favorite Color</label>
        <div>
          <Field name="favoriteColor" component="select">
            <option></option>
            <option value="#ff0000">Red</option>
            <option value="#00ff00">Green</option>
            <option value="#0000ff">Blue</option>
          </Field>
        </div>
      </div>
</form>
}
}

const SelectingForm = reduxForm({
  form: 'selectingFormValues'  ,
  enableReinitialize: true,

})(TrackerView)

export default (SelectingForm);

from redux-form-test.

ashkart avatar ashkart commented on May 26, 2024 1

possible solution here https://stackoverflow.com/questions/44940778/field-error-while-using-redux-form-in-react-js?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa
It is in my case at least =)

from redux-form-test.

ssilve1989 avatar ssilve1989 commented on May 26, 2024

bump

from redux-form-test.

apleduardo avatar apleduardo commented on May 26, 2024

@valdemars i've had the same issue, it fix to me redux-form/redux-form#849

from redux-form-test.

ssilve1989 avatar ssilve1989 commented on May 26, 2024

@sangel10 I believe we are talking about testing the undecorated component though, so it purposely doesn't have reduxForm wrapping it in that case.

from redux-form-test.

sangel10 avatar sangel10 commented on May 26, 2024

@ssilve1989 Didn't see this was in the test repo, sorry about that

from redux-form-test.

quantuminformation avatar quantuminformation commented on May 26, 2024

How do I get round this error by not having to import a connected component in a test?

ie

export class PersonProfileTab extends React.PureComponent<
vs

export default connect((state) => ({

I my test with import { PersonProfileTab } from './PersonProfileTab';
I get

Summary of all failing tests
 FAIL  Src/Pages/People/PersonProfileTab.test.tsx (6.71s)
  ● PersonProfileTab.test.tsx › Datestarted behaves correctly

    Field must be inside a component decorated with reduxForm()

from redux-form-test.

tylercollier avatar tylercollier commented on May 26, 2024

Regarding the error:

Error: Field must be inside a component decorated with reduxForm()

You have two choices when testing your component.

  1. Do not actually hook up the component to Redux Form. This is useful for e.g. testing if the error message is shown if the user has input invalid values. However, because you're not connected to redux, there is no (store) state, and thus you can't try to change it. So, in these tests, you can't do things that would interact with redux/Redux Form.
  2. Hook it up to Redux Form. It's more involved to set up, but is a more realistic test. You are integrating your component with Redux Form, and that's where the name integration test comes from.

In your case, since you are checking the box, and want the state to change, you must wrap your component with Redux Form. See tests/integration/index.js, and note how it's creating and using a store.

from redux-form-test.

Related Issues (10)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.