Skip to content
Open
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
105 changes: 71 additions & 34 deletions .github/workflows/dart.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pkgs/cupertino_http/ios_test/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ dev_dependencies:
crypto: ^3.0.3
cupertino_http:
path: ../
dart_flutter_team_lints: ^3.0.0
flutter_test:
sdk: flutter
http_client_conformance_tests:
Expand Down
15 changes: 3 additions & 12 deletions pkgs/http/mono_pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,9 @@ stages:
- dev
- unit_test:
- test: --test-randomize-ordering-seed=random --platform vm
os:
- linux
- test: --test-randomize-ordering-seed=random --platform chrome
os:
- linux
- test: --test-randomize-ordering-seed=random --platform chrome -c dart2js,dart2wasm
- test: --test-randomize-ordering-seed=random -p node
- command: dart run --define=no_default_http_client=true test/no_default_http_client_test.dart
# Firefox needs an X server to run.
- command: xvfb-run -s "-screen 0 1024x768x24"
dart test --test-randomize-ordering-seed=random --platform firefox
os:
- linux
- command: dart run --define=no_default_http_client=true test/no_default_http_client_test.dart
os:
- linux
- test: --test-randomize-ordering-seed=random -p chrome -c dart2wasm
sdk: dev
1 change: 0 additions & 1 deletion pkgs/http/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,5 @@ dev_dependencies:
fake_async: ^1.2.0
http_client_conformance_tests:
path: ../http_client_conformance_tests/
shelf: ^1.1.0
stream_channel: ^2.1.1
test: ^1.21.2
6 changes: 1 addition & 5 deletions pkgs/web_socket/mono_pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,4 @@ stages:
- dev
- unit_test:
- test: --test-randomize-ordering-seed=random -p vm
os:
- linux
- test: --test-randomize-ordering-seed=random -p chrome -c dart2js
os:
- linux
- test: --test-randomize-ordering-seed=random -p chrome -c dart2js,dart2wasm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void hybridMain(StreamChannel<Object?> channel) async {
});
});

channel.sink.add(server.port);
channel.sink.add(server.port.toString());
await channel
.stream.first; // Any writes indicates that the server should exit.
unawaited(server.close());
Expand Down
Loading
Loading