Skip to content

Commit

Permalink
chore: skip until #11281
Browse files Browse the repository at this point in the history
  • Loading branch information
fzyzcjy committed Dec 1, 2023
1 parent 1ffbd6a commit 6674740
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion frb_example/pure_dart/test/api/exception_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ Future<void> main({bool skipRustLibInit = false}) async {
'TwinNormal', throwsA(isA<FrbException>()));
});

test('Stream sink throw anyhow error', () async {
test('Stream sink throw anyhow error', skip: 'wait until #11281',
() async {
expect(
() async {
await for (final _ in streamSinkThrowAnyhowTwinNormal()) {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,8 @@ Future<void> main({bool skipRustLibInit = false}) async {
throwsA(isA<FrbException>()));
});

test('Stream sink throw anyhow error', () async {
test('Stream sink throw anyhow error', skip: 'wait until #11281',
() async {
expect(
() async {
await for (final _ in streamSinkThrowAnyhowTwinRustAsync()) {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ Future<void> main({bool skipRustLibInit = false}) async {
'TwinSync', throwsA(isA<FrbException>()));
});

test('Stream sink throw anyhow error', () async {
test('Stream sink throw anyhow error', skip: 'wait until #11281',
() async {
expect(
() async {
await for (final _ in streamSinkThrowAnyhowTwinSync()) {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ Future<void> main({bool skipRustLibInit = false}) async {
funcStreamSinkArgPositionTwinRustAsync(a: 100, b: 200);
});

test('call funcStreamReturnErrorTwinRustAsync', () async {
test('call funcStreamReturnErrorTwinRustAsync', skip: 'wait until #11281',
() async {
await expectLater(
() async {
await for (final _ in funcStreamReturnErrorTwinRustAsync()) {}
Expand Down
3 changes: 2 additions & 1 deletion frb_example/pure_dart/test/api/stream_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ Future<void> main({bool skipRustLibInit = false}) async {
funcStreamSinkArgPositionTwinNormal(a: 100, b: 200);
});

test('call funcStreamReturnErrorTwinNormal', () async {
test('call funcStreamReturnErrorTwinNormal', skip: 'wait until #11281',
() async {
await expectLater(
() async {
await for (final _ in funcStreamReturnErrorTwinNormal()) {}
Expand Down

0 comments on commit 6674740

Please sign in to comment.