@@ -16,39 +16,38 @@ class Instructions extends StatelessWidget {
1616 'Enter a query to see current test results' ,
1717 style: TextStyle (fontSize: 24.0 ),
1818 ),
19- paragraph ('Enter query terms that are prefixes of configuration, '
20- 'experiment or test names.'
21- ' Multiple terms can be entered at once, separated by commas.' ),
19+ paragraph (
20+ 'Enter query terms that are prefixes of configuration, '
21+ 'experiment or test names.'
22+ ' Multiple terms can be entered at once, separated by commas.' ,
23+ ),
2224 paragraph ('Some example queries are:' ),
2325 for (final example in [
2426 {
2527 'description' : 'language_2/ tests on analyzer configurations' ,
26- 'terms' : 'language_2/,analyzer'
28+ 'terms' : 'language_2/,analyzer' ,
2729 },
2830 {
2931 'description' : 'service/de* tests on dartk- configurations' ,
30- 'terms' : 'dartk-,service/de'
32+ 'terms' : 'dartk-,service/de' ,
3133 },
3234 {'description' : 'analyzer unit tests' , 'terms' : 'pkg/analyzer/' },
3335 {
3436 'description' :
3537 'all tests on dart2js strong null-safe configuration' ,
36- 'terms' : 'dart2js-hostasserts-strong'
38+ 'terms' : 'dart2js-hostasserts-strong' ,
3739 },
3840 {
3941 'description' :
4042 'all tests that were run with experiment "test-experiment"' ,
41- 'terms' : 'test-experiment'
43+ 'terms' : 'test-experiment' ,
4244 },
4345 {'description' : 'null-safe language tests' , 'terms' : 'language/' },
4446 ]) ...[
4547 const SizedBox (height: 12 ),
4648 InkWell (
4749 onTap: () {
48- Navigator .pushNamed (
49- context,
50- '/filter=${example ['terms' ]}' ,
51- );
50+ Navigator .pushNamed (context, '/filter=${example ['terms' ]}' );
5251 },
5352 child: Text .rich (
5453 TextSpan (
@@ -60,26 +59,29 @@ class Instructions extends StatelessWidget {
6059 color: Colors .blue[900 ],
6160 decoration: TextDecoration .underline,
6261 ),
63- )
62+ ),
6463 ],
6564 ),
6665 ),
6766 ),
6867 ],
6968 const SizedBox (height: 24.0 ),
70- const Text (
71- 'About Current Results' ,
72- style: TextStyle (fontSize: 24.0 ),
69+ const Text ('About Current Results' , style: TextStyle (fontSize: 24.0 )),
70+ paragraph (
71+ 'For each test, the results show how many '
72+ 'of the selected configurations are passing, failing, and flaky. '
73+ 'The item can be expanded to show which configurations are failing,'
74+ ' and the configuration names are links to the failure logs.' ,
75+ ),
76+ paragraph (
77+ 'The clock icon after each test name is a link to the '
78+ 'results feed, filtered to show just the history of that test.' ,
79+ ),
80+ paragraph (
81+ 'Results can be downloaded from the server using the '
82+ 'JSON link at the bottom of the page, or as comma-separated '
83+ 'text using the text link.' ,
7384 ),
74- paragraph ('For each test, the results show how many '
75- 'of the selected configurations are passing, failing, and flaky. '
76- 'The item can be expanded to show which configurations are failing,'
77- ' and the configuration names are links to the failure logs.' ),
78- paragraph ('The clock icon after each test name is a link to the '
79- 'results feed, filtered to show just the history of that test.' ),
80- paragraph ('Results can be downloaded from the server using the '
81- 'JSON link at the bottom of the page, or as comma-separated '
82- 'text using the text link.' ),
8385 ],
8486 ),
8587 );
0 commit comments