1
1
import 'dart:async' ;
2
+ import 'dart:io' ;
2
3
import 'dart:typed_data' ;
3
4
4
5
import 'package:logging/logging.dart' ;
@@ -469,7 +470,9 @@ void main() {
469
470
expect (err.duration? .inMilliseconds, 200 );
470
471
expect (err.message, "Future not completed" );
471
472
}
472
- });
473
+ },
474
+ // temporarily skipped in CI due to https://github.com/rust-lang/rust/issues/88622
475
+ skip: Platform .environment['CI' ] == 'true' );
473
476
474
477
test (
475
478
'test that panics in stream code are handled gracefully and merely time out' ,
@@ -481,13 +484,17 @@ void main() {
481
484
expect (err.duration? .inMilliseconds, 20 );
482
485
expect (err.message, "No stream event" );
483
486
}
484
- });
487
+ },
488
+ // temporarily skipped in CI due to https://github.com/rust-lang/rust/issues/88622
489
+ skip: Platform .environment['CI' ] == 'true' );
485
490
486
491
test ('test that panics in sync code are handled gracefully' , () {
487
492
final accounts = AccountsApi ();
488
493
expect (() async => accounts.contactSyncPanic (),
489
494
throwsA (isA <MembraneException >()));
490
- });
495
+ },
496
+ // temporarily skipped in CI due to https://github.com/rust-lang/rust/issues/88622
497
+ skip: Platform .environment['CI' ] == 'true' );
491
498
492
499
test ('test that borrowing from other namespaces works' , () async {
493
500
final accounts = AccountsApi ();
0 commit comments