From 9610ff6b8ef57fcd0585217874b92fc613b30ad4 Mon Sep 17 00:00:00 2001 From: xster Date: Fri, 17 Feb 2017 11:17:05 -0800 Subject: [PATCH] Add --start-paused doc (#8233) * Add --start-paused doc * correcting > Observatory * Updating --start-paused option w/feedback --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2e4d1d8897..f095763dcf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -101,7 +101,7 @@ Individual tests can also be run directly, e.g. `flutter test lib/my_app_test.da Flutter tests use [package:flutter_test](https://github.com/flutter/flutter/tree/master/packages/flutter_test) which provides flutter-specific extensions on top of [package:test](https://pub.dartlang.org/packages/test). -`flutter test` runs tests inside the flutter shell. +`flutter test` runs tests inside the flutter shell. To debug tests in Observatory, use the `--start-paused` option to start the test in a paused state and wait for connection from a debugger. This option lets you set breakpoints before the test runs. To run all the tests for the entire Flutter repository, the same way that Travis runs them, run `dart dev/bots/test.dart`.