Nicholas Shahan

Results 33 issues of Nicholas Shahan
trafficstars

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.

type-enhancement
current results ui

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)...

type-enhancement
current results ui

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...

type-enhancement
results feed

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...

type-enhancement
results feed

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...

type-enhancement

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.

type-enhancement

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); } }...

package:dwds
P3
triaged

```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...

package:dwds
P3
triaged