Nicholas Shahan
Nicholas Shahan
This "history" button doesn't seem to work anymore. link: [https://dart-current-results.web.app/#/filter=language/async/await_flatten_test&showAll](https://dart-current-results.web.app/#/filter=language/async/await_flatten_test&showAll) In the example shown in the screenshot above, clicking the button takes me to the page [https://dart-current-results.web.app/#showLatestFailures=false&test=language/async/await_flatten_test](https://dart-current-results.web.app/#showLatestFailures=false&test=language/async/await_flatten_test). It seems like...
It would be handy if each failing test had a link for a github issue search just like the one that is available on the Test Results page.
It would be helpful if we could search for text on the page with Ctrl+F or Command+F (mac). I believe this is possible with flutter web (not sure about this)...
I think it would be helpful if when you start skipping tests the trybot should go red and require approval. WDYT? Recently, we inadvertently started skipping some tests on the...
I'm not sure if this has been considered already but I think it would be helpful. When someone pre-approves test results that information should appear as a comment in the...
It would be nice if all the tools had links to this repo somewhere. A simple link in the footer would be fine to increase visibility of this repo and...
If I am logged in I would like to filter out all but my changes so I can easily find and approve failures I have caused.
When I am looking at the "Aggregated test results" view, if I move the mouse cursor over the name of a test the cursor changes as if this is a...
When debugging with vscode. ```dart main() { var x = 40; if (x > 10) { var x = 'hello'; if (x.isNotEmpty) { var x = Duration.zero; print(x); } }...
```dart import 'dart:async'; main() async { for (var i = 0; i < 10; i++) { print('Tick: $i'); await Future.delayed(Duration(seconds: 1)); } } ``` If you run this app and...