@@ -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