Skip to content

Commit e9563c7

Browse files
author
apan
committed
doc improvement
1 parent f834fec commit e9563c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guides/basic-use/cli-commands.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ ember test [options]
168168
<!--alex disable failed-->
169169
`ember test` runs all of the tests found in the `tests` folder of the app. By default, it runs all the tests once and displays the results. We'll see things like syntax errors, linting problems, deprecations, and failed assertions in the command line output. To instead watch tests in the browser as they run, visit `http://localhost:4200/tests` while the local server is running with `ember serve`.
170170

171-
By default, these tests are run in Headless Chrome. "Headless" means the tests are running the Chrome environment, but we won't see the visual output of the browser. This makes the test suite faster.
171+
By default, these tests run in Headless Chrome. "Headless" means the tests are running the Chrome environment, but we won't see the visual output of the browser. This makes the test suite faster.
172172

173173
### Example use
174174

@@ -247,7 +247,7 @@ ember addon <my-addon-name> [options]
247247

248248
### What it does
249249

250-
`ember addon` creates all the boilerplate files for a new Ember addon. It puts them in a folder with the same name as whatever we provide in place of `<my-addon-name>`.
250+
`ember addon` creates all the boilerplate files for a new Ember addon. It puts them in a folder with the same name as whatever we provide in `<my-addon-name>`.
251251

252252
### Example use
253253

0 commit comments

Comments
 (0)