@nx/remix:cypress

Generate a Cypress e2e project for a given application.

Usage

1nx generate cypress ... 2

By default, Nx will search for cypress in the default collection provisioned in workspace.json.

You can specify the collection explicitly as follows:

1nx g @nx/remix:cypress ... 2
Nx 15 and lower use @nrwl/ instead of @nx/

Show what will be generated without writing to disk:

1nx g cypress ... --dry-run 2

Options

name

Required
string

Name of the E2E Project

baseUrl

string
Default: http://localhost:3000

URL to access the application on

directory

string

A directory where the project is placed

js

boolean
Default: false

Generate JavaScript files rather than TypeScript files

linter

string
Default: eslint
Accepted values: eslint, none

The tool to use for running lint checks.

project

string

The name of the frontend project to test.

projectNameAndRootFormat

string
Accepted values: as-provided, derived

Whether to generate the project name and root directory as provided (as-provided) or generate them composing their values and taking the configured layout into account (derived).

skipFormat

boolean
Default: false

Skip formatting files

setParserOptionsProject

boolean
Default: false

Whether or not to configure the ESLint "parserOptions.project" option. We do not do this by default for lint performance reasons.