We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I suggest
~/projects/ran jest tree -L 1 --dirsfirst pages components containers libraries libraries/stores components/AuthFields pages ├── create.js ├── details.js ├── _document.js ├── index.js ├── signin.js └── signup.js components ├── AuthFields ├── LinkList └── Theme.js containers ├── CreatePost ├── Header ├── PostInfo ├── PostList ├── PostUpvoter ├── SignInForm ├── SignUpForm ├── App.js └── Default.js libraries ├── graphql_schemas ├── stores ├── apolloClient.js ├── helpers.js ├── middleware.js ├── persist.js ├── redirect.js ├── reducer.js ├── reduxStore.js ├── theme.js ├── validations.js └── withData.js libraries/stores └── auth.js components/AuthFields ├── index.js ├── styles.js └── validation.js
libraries/stores
libraries/modules
@Sly777 you said you have some concerns
The text was updated successfully, but these errors were encountered:
Also I dont like when components consist of
connect
export default connect(Component)
better
Why? for testing, first example force us to test component attached to data, with second we have option to test component only or component with data
Sorry, something went wrong.
No branches or pull requests
I suggest
libraries/stores
orlibraries/modules
)@Sly777 you said you have some concerns
The text was updated successfully, but these errors were encountered: