Index: README.md |
diff --git a/README.md b/README.md |
index 9febb609a4745fc8db64a988502fa4989cd610a6..25892a3ea48b9089e6797ffa25c3f0b812c03e17 100644 |
--- a/README.md |
+++ b/README.md |
@@ -455,7 +455,20 @@ allows the test runner to load your tests properly: |
```yaml |
transformers: |
- test/pub_serve: |
- $include: test/**_test.dart |
+ $include: test/**_test{.*,}.dart |
+``` |
+ |
+Note that if you're using the test runner along with [`polymer`][polymer], you |
+have to make sure that the `test/pub_serve` transformer comes *after* the |
+`polymer` transformer: |
+ |
+[polymer]: https://www.dartlang.org/polymer/ |
+ |
+```yaml |
+transformer: |
+- polymer |
+- test/pub_serve: |
+ $include: test/**_test{.*,}.dart |
``` |
Then, start up `pub serve`. Make sure to pay attention to which port it's using |