Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,22 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

@Skip(
'This file is skipped due to a cross-import that needs to be fixed. Tracked in https://github.com/flutter/flutter/issues/177028.',
)
// This file is run as part of a reduced test set in CI on Mac and Windows
// machines.
@Tags(<String>['reduced-test-set'])
@TestOn('!chrome')
library;

import 'dart:async';
import 'dart:ui';

import 'package:flutter/foundation.dart' show kIsWeb;
import 'package:material_ui/material_ui.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter_test/flutter_test.dart';
import '../widgets/feedback_tester.dart';
import '../widgets/semantics_tester.dart';
import 'package:material_ui/material_ui.dart';

import 'feedback_tester.dart';
import 'semantics_tester.dart';

void main() {
final material3Theme = ThemeData();
Expand Down Expand Up @@ -505,17 +504,19 @@ void main() {
),
),
);
Navigator.push(
theContext,
PageRouteBuilder<void>(
pageBuilder:
(
BuildContext context,
Animation<double> animation,
Animation<double> secondaryAnimation,
) {
return const Placeholder();
},
unawaited(
Navigator.push(
theContext,
PageRouteBuilder<void>(
pageBuilder:
(
BuildContext context,
Animation<double> animation,
Animation<double> secondaryAnimation,
) {
return const Placeholder();
},
),
),
);
await tester
Expand All @@ -537,17 +538,19 @@ void main() {
),
),
);
Navigator.push(
theContext,
PageRouteBuilder<void>(
pageBuilder:
(
BuildContext context,
Animation<double> animation,
Animation<double> secondaryAnimation,
) {
return const Placeholder();
},
unawaited(
Navigator.push(
theContext,
PageRouteBuilder<void>(
pageBuilder:
(
BuildContext context,
Animation<double> animation,
Animation<double> secondaryAnimation,
) {
return const Placeholder();
},
),
),
);
await tester.pump();
Expand All @@ -569,17 +572,19 @@ void main() {
),
),
);
Navigator.push(
theContext,
PageRouteBuilder<void>(
pageBuilder:
(
BuildContext context,
Animation<double> animation,
Animation<double> secondaryAnimation,
) {
return const Placeholder();
},
unawaited(
Navigator.push(
theContext,
PageRouteBuilder<void>(
pageBuilder:
(
BuildContext context,
Animation<double> animation,
Animation<double> secondaryAnimation,
) {
return const Placeholder();
},
),
),
);
await tester.pump();
Expand Down
Loading