DEV Community

Debbie O'Brien
Debbie O'Brien

Posted on • Updated on • Originally published at debbie.codes

Setting up Cypress

Cypress is a great way of testing your frontend application with end to end tests and it is so nice to work with. Writing the tests and making sure they get ran on each build is really important too. Let's take a look at how you setup Cypress in your Nuxt.js project, setup a github action for continuous integration so that Netlify will run the tests every time your application is building.

Once you have already created your Nuxt.js project you can install Cypress as a dev dependency.

yarn add cypress -D
Enter fullscreen mode Exit fullscreen mode

You then need to open Cypress which will launch the test runner and create the cypress folder in your project with some example tests.

yarn run cypress open
Enter fullscreen mode Exit fullscreen mode

In your cypress.json file you can add custom configurations so the viewport is wider and the height depending on your screen or how you want to see your application within the cypress window. We can also set a baseUrl for our test. You will find this file at the root of your project.

{
  "baseUrl": "http://localhost:3000",
  "viewportWidth": 1600,
  "viewportHeight": 1400
}
Enter fullscreen mode Exit fullscreen mode

We can now remove the examples folder and create our own test inside the integration folder. This is just a basic test will make visit the home page.

describe('The Home Page', () => {
  it('should visit the home page', () => {
    cy.visit(Cypress.config().baseUrl + '/')
  })
})
Enter fullscreen mode Exit fullscreen mode

If you have eslint setup you may notice that it is giving you errors and saying that it can't find cypress. To fix this we can install the eslint plugin for cypress as a dev dependency.

yarn add eslint-plugin-cypress -D
Enter fullscreen mode Exit fullscreen mode

We then add this to our .eslintrc to tell it to use the cypress plugin and extend the cypress recommended configuration or alternatively you can set your own rules. We also set our env for cypress globals to true to allow certain globals provided by Cypress.

{
  "plugins": ["cypress"],
  "extends": ["plugin:cypress/recommended"],
  "env": {
    "cypress/globals": true
  }
}
Enter fullscreen mode Exit fullscreen mode

We can then setup our github action by creating a workflows folder in our .github folder. Inside the workflows folder create a main.yml file and add the following config with build as the script we want to run from our package.json for building our application and start for the script we want to use to start our application.

name: End-to-end tests
on: [push]
jobs:
  cypress-run:
    runs-on: ubuntu-16.04
    steps:
      - name: Checkout
        uses: actions/checkout@v1
      # Install NPM dependencies, cache them correctly
      # and run all Cypress tests
      - name: Cypress run
        uses: cypress-io/github-action@v2
        with:
          browser: chrome
          headless: true
          build: npm run generate
          start: npm run start
          # quote the url to be safe against YML parsing surprises
          wait-on: "http://localhost:3000"
Enter fullscreen mode Exit fullscreen mode

When running your tests in CI sometimes the server will continue to execute the next command after signalling to start your server and if the server takes time to boot then Cypress might start to visit your local server before it is ready. You can resolve this by adding this npm package, start-server-and-test, as a dev dependency.

yarn add start-server-and-test -D
Enter fullscreen mode Exit fullscreen mode

Then in our package json we need to create some scripts so that cypress can run. We create the run script the open script and then a test script for when in production passing in the command of the package we just installed and then using the serve command with where our server will be run and then we call the run script that we created.

For development it is pretty much the same except we call the dev script and the cypress open script.

"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e:run": "start-server-and-test start http://localhost:3000 cy:run",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 cy:open",
Enter fullscreen mode Exit fullscreen mode

One thing we need to do before launching our tests in production is to add the videos and screenshots to our .gitignore file.
add to gitignore

cypress/videos
cypress/screenshots
Enter fullscreen mode Exit fullscreen mode

We can now launch your tests to make sure it is working correctly.

yarn test:e2e:run
Enter fullscreen mode Exit fullscreen mode

Once you are happy that everything is working as it should you can push your changes which will trigger the github action. Now in your github repo you can click on the actions tab and watch your action do it's job and you can see if tests are passing.

Then there is just one last step in order to get your tests working with your hosting provider.

If you are using Netlify there is a netlify plugin for cypress you can install. In the Netlify dashboard go to the plugins and search for cypress and click install.

Add netlify-plugin-cypress NPM package as a dev dependency to your repository.

yarn add -D netlify-plugin-cypress
Enter fullscreen mode Exit fullscreen mode

Then add a netlify.toml file if you haven't already got one and add the following code which will run the commands on build as well as cache the cypress binary in a local node_modules folder so Netlify caches it and then one the site is built it runs the plugin to test the site.

[build]
  command = "npm run generate"
  publish = "dist"

[build.environment]
  # cache Cypress binary in local "node_modules" folder
  # so Netlify caches it
  CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
  # set TERM variable for terminal output
  TERM = "xterm"

[[plugins]]
  # local Cypress plugin will test our site after it is built
  package = "netlify-plugin-cypress"

Enter fullscreen mode Exit fullscreen mode

And thats it. You can now go to your Netlify builds and watch your tests run and your application build. Now if your tests fail your application won't build. This plugin also tells you if it failed because of the tests so it is really easy to see if it is the cause of your builds breaking.

Note: If you are not using Netlify you can modify your generate script to run your tests once the application has been built.

"generate": "nuxt generate && cypress install --force && npm run test:e2e:run",
Enter fullscreen mode Exit fullscreen mode

Top comments (5)

Collapse
 
mornir profile image
Jérôme Pott

Great post! 😃 Cypress is my favorite testing tool as it makes writing tests fun! It's a very satisfying feeling to see the tests happening live with cypress open.

Just a question: in the last part, are you installing Cypress during the Netlify build? I tried it once last year and it was not so good: Netlify took a long time to unzip Cypress and wouldn't cache it afterward.
Have you checked out the Cypress Netlify Build Plugin? It can also prevent a deploy if the tests are failing and it caches Cypress properly between builds.

However, my favorite approach is to run the Cypress tests in the GitHub Action, but against a branch deploy on Netlify! This is as close as we can get to the production environment and "bad" code cannot be committed to the production branch.

I posted about it here:

Collapse
 
debs_obrien profile image
Debbie O'Brien

Thanks I just modified article as yes the Netlify plugin is really nice. Interesting approach to test it on the preview branch. How do you then check your tests are ok? wait on email if it fails or ??

Collapse
 
mornir profile image
Jérôme Pott • Edited
  • I protected the master branch so that branches with GitHub Action that failed cannot be merged.
  • I can check the test details in the GitHub Action, but the best way is to connect the GitHub repository to the Cypress dashboard. There I can see screenshots and videos of the test runs.
  • There's also a GitHub Integration for Cypress that enriches the pull requests with nicely presented information.
  • I also receive emails in case tests are failings.

Here's an example of such a pull request: github.com/mornir/copywork-portfol...

Collapse
 
omaratta212 profile image
Omar Atta • Edited

Really awesome work, I was wondering if you have any helpful resources to do the same thing with bitbucket pipelines! the configuration looks very different I think.

Collapse
 
debs_obrien profile image
Debbie O'Brien

sorry I don't. I don't even have a bitbucket repo