File tree Expand file tree Collapse file tree
packages/audioplayers/example/integration_test Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ jobs:
299299 ( cd server; dart run bin/server.dart ) &
300300 flutter test -d macos integration_test/platform_test.dart --dart-define USE_LOCAL_SERVER=true
301301 flutter test -d macos integration_test/lib_test.dart --dart-define USE_LOCAL_SERVER=true
302- # TODO: Integration tests on macOS 13 currently time out.
302+ # TODO: Integration tests on macOS 13 currently time out.
303303 # flutter test -d macos integration_test/app_test.dart --dart-define USE_LOCAL_SERVER=true
304304
305305 macos-14 :
Original file line number Diff line number Diff line change @@ -147,11 +147,14 @@ void main() async {
147147 expect (positions.last, Duration .zero);
148148 }
149149 },
150- // FIXME(gustl22): Android provides no position for samples shorter
151- // than 0.5 seconds.
152- skip: isAndroid &&
153- ! td.isLiveStream &&
154- td.duration! < const Duration (seconds: 1 ),
150+ skip:
151+ // FIXME(gustl22): [FLAKY] macos 13 fails on live streams.
152+ (isMacOS && td.isLiveStream) ||
153+ // FIXME(gustl22): Android provides no position for samples
154+ // shorter than 0.5 seconds.
155+ (isAndroid &&
156+ ! td.isLiveStream &&
157+ td.duration! < const Duration (seconds: 1 )),
155158 );
156159 }
157160
You can’t perform that action at this time.
0 commit comments