-
https://www.fullstackreact.com/articles/how-to-get-create-react-app-to-work-with-your-rails-api/ Awesome blog post for setting up a decoupled app with rails API.
-
https://online.reacttraining.com/p/reactjsfundamentals AMAZING FREE course that covers webpack, npm, and how to set up a project among other things.
-
https://www.fullstackreact.com/ FREE first chapter (I have the book if you like the first chapter).
-
https://teamtreehouse.com/library/react-basics Geat course that explains react concepts really well with great animated examples
-
https://www.codecademy.com/learn/react-101 Really really good into to JSX and how to write compoenents.
gem 'rspec-rails', '~> 3.5'
gem 'capybara'
end```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=Navigating= | |
visit('/projects') | |
visit(post_comments_path(post)) | |
=Clicking links and buttons= | |
click_link('id-of-link') | |
click_link('Link Text') | |
click_button('Save') | |
click('Link Text') # Click either a link or a button | |
click('Button Value') |
OlderNewer