@nx/cypress:cypress

Run Cypress for e2e, integration and component testing.

Options can be configured in project.json when defining the executor, or when invoking it. Read more about how to configure targets and executors here: https://nx.dev/reference/project-configuration#targets.

Depending on your testing type, the Cypress executor is configured in different ways. The following are sample configurations that are created via the configuration and cypress-component-configuration generators.

1"targets": { 2 "e2e": { 3 "executor": "@nx/cypress:cypress", 4 "options": { 5 "cypressConfig": "apps/app-e2e/cypres.config.ts", 6 "devServerTarget": "my-react-app:serve", 7 "testingType": "e2e" 8 } 9 } 10} 11
API Testing

API testing with Cypress is the same setup as e2e testing. Just change which devServerTarget is used!

Providing a Base URL

If devServerTarget is provided, the url returned from started the dev server will be passed to cypress as the baseUrl option.

Defining a baseUrl in the executor options will override the inferred baseUrl from the devServerTarget.

The baseUrl defined in the Cypress config file is the last value used if no url is found in the devServerTarget or executor options.

Static Serving

When running in CI it doesn't make sense to start up a dev server since there aren't changes to watch for.

You can use @nx/web:file-server to serve the pre-built static files of your frontend project.

In some frontend application, add a 'static-serve' target.

1"serve-static": { 2 "executor": "@nx/web:file-server", 3 "options":{ 4 "buildTarget": "frontend:build" 5 } 6} 7

In the e2e application add a configuration to change devServerTarget to point to the static-serve from the frontend application

1"e2e": { 2 //... 3 "configurations": { 4 "ci": { 5 "devServerTarget": "frontend:serve-static" 6 } 7 } 8} 9
What about Node projects?

The same can be done for backend node apps with @nx/js:node executor

1nx e2e my-app-e2e 2

Environment Variables

Using executor configurations offers flexibility to set environment variables

1"targets": { 2 "e2e": { 3 "executor": "@nx/cypress:cypress", 4 "options": { 5 "cypressConfig": "apps/app-e2e/cypres.config.ts", 6 "devServerTarget": "my-react-app:serve", 7 "testingType": "e2e" 8 }, 9 "configurations": { 10 "qa": { 11 "env": { 12 "API_URL": "https://api.qa.company.com" 13 } 14 }, 15 "dev": { 16 "env": { 17 "API_URL": "http://localhost:3333/api" 18 } 19 } 20 } 21 } 22} 23

Read more on different ways to use environment variables for cypress executor

Options

cypressConfig

Required
string

The path of the Cypress configuration json file.

baseUrl

string

The address (with the port) which your application is running on.

browser

string

The browser to run tests in.

ciBuildId

oneOf [string, number]

A unique identifier for a run to enable grouping or parallelization.

devServerTarget

string

Dev server target to run tests against.

exit

boolean
Default: true

Whether or not the Cypress Test Runner will stay open after running tests in a spec file.

env

object: object

A key-value Pair of environment variables to pass to Cypress runner.

group

string

A named group for recorded runs in the Cypress dashboard.

headed

boolean
Default: false

Displays the browser instead of running headlessly. Set this to true if your run depends on a Chrome extension being loaded.

ignoreTestFiles

oneOf [string, Array<string>]

A String or Array of glob patterns used to ignore test files that would otherwise be shown in your list of tests. Cypress uses minimatch with the options: {dot: true, matchBase: true}. We suggest using https://globster.xyz to test what files would match.

key

string

The key cypress should use to run tests in parallel/record the run (CI only).

parallel

boolean
Default: false

Whether or not Cypress should run its tests in parallel (CI only).

port

oneOf [string, number]

Pass a specified port value to the devServerTarget, if the value is 'cypress-auto' a free port will automatically be picked for the devServerTarget.

quiet

boolean
Default: false

If passed, Cypress output will not be printed to stdout. Only output from the configured Mocha reporter will print.

record

boolean
Default: false

Whether or not Cypress should record the results of the tests.

reporter

string

The reporter used during cypress run.

reporterOptions

oneOf [string, object: object]

The reporter options used. Supported options depend on the reporter. https://docs.cypress.io/guides/tooling/reporters#Reporter-Options

runnerUi

boolean

Displays the Cypress Runner UI. Useful for when Test Replay is enabled and you would still like the Cypress Runner UI to be displayed for screenshots and video.

spec

string

A comma delimited glob string that is provided to the Cypress runner to specify which spec files to run. i.e. **examples/**,**actions.spec**.

skipServe

boolean
Default: false

Skip dev-server build.

testingType

string
Default: e2e
Accepted values: component, e2e

Specify the type of tests to execute.

tag

string

A comma delimited list to identify a run with.

watch

boolean
Default: false

Recompile and run tests when files change.

Additional Properties

anything

Extra properties of any type may be provided to this object.

copyFiles

DeprecatedInternal
string

A regex string that is used to choose what additional integration files to copy to the dist folder.

No longer used since cypress supports typescript out of the box. If specified, it will be ignored.

headless

Deprecated
boolean
Default: false

Hide the browser instead of running headed.

Cypress runs headless by default. Use the --watch flag to control head/headless behavior instead.

tsConfig

Deprecated
string

The path of the Cypress tsconfig configuration json file.

This option no longer has any effect. Cypress supports typescript out of the box. Add any options directly to <projectRoot>/tsconfig.json or <projectRoot>/cypress/tsconfig.json