Danny Tuppeny

Results 1795 comments of Danny Tuppeny

Start working on this at https://dart-review.googlesource.com/c/sdk/+/259181/. ![Sep-14-2022 10-42-24](https://user-images.githubusercontent.com/1078012/190120344-375ca564-9f53-48a4-941c-b45b2aeac166.gif) It's in the language server, so will become part of a future Dart/Flutter SDK release rather than a Dart-Code release.

Landed in https://github.com/dart-lang/sdk/commit/15dfda917ae15ed40f6f9575625a5b0cf3ec4d0a.

Yes, this is an unfortunate limitation. The issue is that VS Code runs tests by providing the "full test name" (which is all groups+test name combined) to `dart test`. In...

@jakemac53 @natebosch does `package:test` support debugging web tests from the editor through dwds? Right now I think in VS Code we're debugging VM tests because we just attach to the...

@jakemac53 @natebosch do you know the answer to the above? Is it possible to debug tests through dwds (eg. from the editor) when running in a browser?

@jakemac53 I don't suppose that can be done in a way that's compatible with `package:test` (eg. running tests by name/location, and getting the json reporter output)?

Also - it seems like there's no `webdev test` (only build/server/daemon). Does this mean `build_runner` should be used? (I'm not entirely familiar with the relationship between webdev and build_runner).

> we have considered dropping support for the `--pub-serve` argument a few times... And why _didn't_ you go ahead with it? Right now I don't have any support for web...

@bwilkerson it seems the reason for this is that the `flutter_gen` package is not explicitly listed in `pubspec.yaml`, so the server doesn't suggest it for any import fixes (or its...

I think this is because when we run tests from CodeLens, VS code has no knowledge of them. We do create a "test run", but we give it an _empty_...