Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pkgs/test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Change return type on the `body` callback argument to `group` to `void` from
`dynamic`. This may surface cases where the group callback was erroneously
returning an ignored value.
* Fix a hang when a test run with `--compiler exe` crashes.

## 1.30.0

Expand Down
1 change: 1 addition & 0 deletions pkgs/test_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Change return type on the `body` callback argument to `group` to `void` from
`dynamic`. This may surface cases where the group callback was erroneously
returning an ignored value.
* Fix a hang when a test run with `--compiler exe` crashes.

## 0.6.16

Expand Down
1 change: 1 addition & 0 deletions pkgs/test_core/lib/src/runner/vm/platform.dart
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ class VMPlatform extends PlatformPlugin {
outerChannel = MultiChannel<Object?>(jsonSocketStreamChannel(socket));
cleanupCallbacks
..add(serverSocket.close)
..add(socket.close)
..add(process.kill);
} else {
var receivePort = ReceivePort();
Expand Down
Loading