Index: README.md |
diff --git a/README.md b/README.md |
index be8a6346e7977e2a77febb6159b4543ef029eb38..e33cf7886cb479878c84ab99da8ffb18c4af22cf 100644 |
--- a/README.md |
+++ b/README.md |
@@ -140,6 +140,12 @@ The test runner considers any file that ends with `_test.dart` to be a test |
file. If you don't pass any paths, it will run all the test files in your |
`test/` directory, making it easy to test your entire application at once. |
+You can select specific tests cases to run by name using `pub run test -n "test |
kevmoo
2016/05/03 21:25:02
Better to use the unabbreviated flag names here –
nweiz
2016/05/03 21:30:34
This is contrary to how we document other flags. I
|
+name"`. The string is interpreted as a regular expression, and only tests whose |
+description (including any group descriptions) match that regular expression |
+will be run. You can also use the `-N` flag to run tests whose names contain a |
+plain-text string. |
+ |
By default, tests are run in the Dart VM, but you can run them in the browser as |
well by passing `pub run test -p chrome path/to/test.dart`. `test` will take |
care of starting the browser and loading the tests, and all the results will be |