Results 5 issues of Gieted

For JUnit tests, results of last run are displayed alongside the test's code: ![obraz](https://user-images.githubusercontent.com/35242233/189503124-37973c96-6f0f-4a18-bf41-b0276b58d961.png) But for Kotest it will always display just the green run arrow: ![obraz](https://user-images.githubusercontent.com/35242233/189503134-96431cd5-3b19-4679-8280-e00e1a423089.png) I'm pretty sure...

## Steps to Reproduce 1. Create `dart_test.yaml` file inside root directory of your project ```yaml timeout: 300ms ``` 2. Create some test: ```dart import 'dart:async'; import 'package:flutter_test/flutter_test.dart'; void main() {...

If you do ```dart player.open(Media.network(newSource), autoStart: false); ``` Then `player.positionStream` will not give you the duration of media, until it's unpaused for the first time. How to load media and...

I've noticed that my server is having low tps problem, despite good hardware. After some debugging, I've concluded that lag is caused by PipeNetwork.getOrderedNetworkItems() function. A simple change could be...

On Web when the FaIcon widget is moved (e.g. by AnimatedPositioned) the icon jumps up/down by 1 pixel, slightly out-of-sync with the position change. **To Reproduce** Steps to reproduce the...