Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the --test-type option from the helper-test blueprint #241

Merged
merged 1 commit into from Dec 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion guides/advanced-use/blueprints.md
Expand Up @@ -65,7 +65,7 @@ The accompanying test is in another blueprint. It has the same name with a `-tes
blueprints/helper-test
├── files
│ └── tests
│ └── unit
│ └── integration
│ └── helpers
│ └── __name__-test.js
└── index.js
Expand Down
8 changes: 3 additions & 5 deletions guides/advanced-use/cli-commands-reference.md
Expand Up @@ -286,13 +286,11 @@ ember generate helper-addon <name>

#### `ember generate helper-test`

Generates a helper integration test or a unit test.
Generates a helper integration test.

```bash
ember generate helper-test <name> <options...>
Generates a helper integration test or a unit test.
--test-type (integration, unit) (Default: integration)
aliases: -i (--test-type=integration), -u (--test-type=unit), --integration (--test-type=integration), -unit (--test-type=unit)
ember generate helper-test <name>
Generates a helper integration test.
```

#### `ember generate initializer`
Expand Down