mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
[flutter_tools] re-enable non-nullable test (#57075)
This commit is contained in:
parent
7bed5a2851
commit
3ccb160da3
@ -604,7 +604,6 @@ Future<void> _runFrameworkTests() async {
|
|||||||
await _runFlutterTest(path.join(flutterRoot, 'packages', 'fuchsia_remote_debug_protocol'), tableData: bigqueryApi?.tabledata);
|
await _runFlutterTest(path.join(flutterRoot, 'packages', 'fuchsia_remote_debug_protocol'), tableData: bigqueryApi?.tabledata);
|
||||||
await _runFlutterTest(path.join(flutterRoot, 'dev', 'integration_tests', 'non_nullable'),
|
await _runFlutterTest(path.join(flutterRoot, 'dev', 'integration_tests', 'non_nullable'),
|
||||||
options: <String>['--enable-experiment=non-nullable'],
|
options: <String>['--enable-experiment=non-nullable'],
|
||||||
skip: true, // TODO(jonahwilliams): re-enable after https://github.com/flutter/flutter/issues/55872
|
|
||||||
);
|
);
|
||||||
await _runFlutterTest(
|
await _runFlutterTest(
|
||||||
path.join(flutterRoot, 'dev', 'tracing_tests'),
|
path.join(flutterRoot, 'dev', 'tracing_tests'),
|
||||||
|
@ -213,7 +213,7 @@ void catchIsolateErrors() {
|
|||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
print('$_kStartTimeoutTimerMessage');
|
print('$_kStartTimeoutTimerMessage');
|
||||||
String serverPort = Platform.environment['SERVER_PORT'];
|
String serverPort = Platform.environment['SERVER_PORT'] ?? '';
|
||||||
String server = Uri.decodeComponent('$encodedWebsocketUrl:\$serverPort');
|
String server = Uri.decodeComponent('$encodedWebsocketUrl:\$serverPort');
|
||||||
StreamChannel<dynamic> channel = serializeSuite(() {
|
StreamChannel<dynamic> channel = serializeSuite(() {
|
||||||
catchIsolateErrors();
|
catchIsolateErrors();
|
||||||
|
Loading…
Reference in New Issue
Block a user