From 2f0fb8dd58e74e578372a9592dd750f9c4868f2f Mon Sep 17 00:00:00 2001 From: Sam Van Campenhout Date: Sat, 30 Oct 2021 14:26:34 +0200 Subject: [PATCH] Remove the `--test-type` option from the helper-test blueprint --- guides/advanced-use/blueprints.md | 2 +- guides/advanced-use/cli-commands-reference.md | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/guides/advanced-use/blueprints.md b/guides/advanced-use/blueprints.md index ba18f62e..cafb4a75 100644 --- a/guides/advanced-use/blueprints.md +++ b/guides/advanced-use/blueprints.md @@ -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 diff --git a/guides/advanced-use/cli-commands-reference.md b/guides/advanced-use/cli-commands-reference.md index 79c7de2f..7aec6ea7 100644 --- a/guides/advanced-use/cli-commands-reference.md +++ b/guides/advanced-use/cli-commands-reference.md @@ -286,13 +286,11 @@ ember generate helper-addon #### `ember generate helper-test` -Generates a helper integration test or a unit test. +Generates a helper integration test. ```bash -ember generate helper-test - 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 + Generates a helper integration test. ``` #### `ember generate initializer`