Installing Cypress
Learn to install Cypress in this lesson.
We'll cover the following...
Setting up Cypress involves two different steps. First we need to install Cypress itself. Then, we need to install the Cypress-Rails gem to help us integrate Cypress into our system.
First, install Cypress as a package:
$ yarn add --dev cypress
Now we need to add two gems: the Cypress-Rails gem and the dotenv gem. The gems both go in the Gemfile
in the development and test groups:
group :development, :test do
# <existing gems...>
gem "cypress-rails"
gem "dotenv-rails"
end
The Cypress-Rails gem uses environment variables to manage some settings, so, to make our life a little easier, we’re going to add the dotenv gem. Do a bundle install, and we’re ready for the next step.
Now we need to initialize Cypress, ...