82 lines
1.2 KiB
Markdown
82 lines
1.2 KiB
Markdown
# @nrwl/detox:application
|
|
|
|
Create a detox application
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
nx generate application ...
|
|
```
|
|
|
|
```bash
|
|
nx g app ... # same
|
|
```
|
|
|
|
By default, Nx will search for `application` in the default collection provisioned in `angular.json`.
|
|
|
|
You can specify the collection explicitly as follows:
|
|
|
|
```bash
|
|
nx g @nrwl/detox:application ...
|
|
```
|
|
|
|
Show what will be generated without writing to disk:
|
|
|
|
```bash
|
|
nx g application ... --dry-run
|
|
```
|
|
|
|
## Options
|
|
|
|
### name (_**required**_)
|
|
|
|
Type: `string`
|
|
|
|
Name of the E2E Project
|
|
|
|
### project (_**required**_)
|
|
|
|
Type: `string`
|
|
|
|
The name of the frontend project to test.
|
|
|
|
### directory
|
|
|
|
Type: `string`
|
|
|
|
A directory where the project is placed
|
|
|
|
### js
|
|
|
|
Default: `false`
|
|
|
|
Type: `boolean`
|
|
|
|
Generate JavaScript files rather than TypeScript files
|
|
|
|
### linter
|
|
|
|
Default: `eslint`
|
|
|
|
Type: `string`
|
|
|
|
Possible values: `eslint`, `tslint`, `none`
|
|
|
|
The tool to use for running lint checks.
|
|
|
|
### setParserOptionsProject
|
|
|
|
Default: `false`
|
|
|
|
Type: `boolean`
|
|
|
|
Whether or not to configure the ESLint "parserOptions.project" option. We do not do this by default for lint performance reasons.
|
|
|
|
### skipFormat
|
|
|
|
Default: `false`
|
|
|
|
Type: `boolean`
|
|
|
|
Skip formatting files
|