Skip to content

Commit d195429

Browse files
author
José Valim
committed
Merge pull request #1415 from jwarwick/mix_help_typos
Fixed doc typos in Mix.Tasks.Test
2 parents 08aa226 + 6cc9a4b commit d195429

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/mix/lib/mix/tasks/test.ex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ defmodule Mix.Tasks.Test do
99
1010
This task will preload the `test/test_helper.exs` which
1111
should do all testing setup and then require all files
12-
that matches the given `test_pattern` in parallel.
12+
that match the given `test_pattern` in parallel.
1313
14-
Before running tests, it invokes the prepare task
14+
Before running tests, it invokes the `App.Start` task
1515
which defaults to compile and load your project.
1616
1717
A list of files can be given after the task name in
1818
order to select the files to compile.
1919
2020
## Command line options
2121
22-
* `--trace` - run tests with detailed reporting. Automatically set max cases to 1;
22+
* `--trace` - run tests with detailed reporting. Automatically sets `max-cases` to 1;
2323
* `--max-cases` - set the maximum number of cases running async;
2424
* `--cover` - the directory to include coverage results;
2525
* `--force` - forces compilation regardless of module times;
@@ -29,7 +29,7 @@ defmodule Mix.Tasks.Test do
2929
3030
## Configuration
3131
32-
* `:test_paths` - path containing tests.
32+
* `:test_paths` - list of paths containing test files.
3333
Defaults to `["test"]`.
3434
3535
* `:test_pattern` - a pattern to load test files.
@@ -39,7 +39,7 @@ defmodule Mix.Tasks.Test do
3939
for testing. Defaults to `test/test_helper.exs`.
4040
4141
* `:test_coverage` - the directory to include test coverage results.
42-
Defaults to nil.
42+
Defaults to `nil`.
4343
4444
"""
4545

0 commit comments

Comments
 (0)