Skip to content

Commit

Permalink
ugh last last one
Browse files Browse the repository at this point in the history
  • Loading branch information
mdebbar committed Dec 11, 2024
1 parent 495cf14 commit f1387d0
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import 'package:test/bootstrap/browser.dart';
import 'package:test/test.dart';
import 'package:ui/src/engine.dart';
import 'package:ui/ui.dart' as ui;
import 'package:ui/ui_web/src/ui_web.dart' as ui_web;

import '../../common/test_initialization.dart';

Expand All @@ -17,15 +18,13 @@ void main() {
}

void testMain() {
setUpImplicitView();

setUpAll(() async {
await renderer.initialize();
});

group('PlatformDispatcher', () {
late EnginePlatformDispatcher dispatcher;

setUpAll(() async {
await bootstrapAndRunApp(withImplicitView: true);
});

setUp(() {
dispatcher = EnginePlatformDispatcher();
});
Expand Down Expand Up @@ -437,7 +436,8 @@ void testMain() {
expect(beginFrameCalled, true);
expect(drawFrameCalled.isCompleted, true);
});
});
// https://github.com/flutter/flutter/issues/160096
}, skip: ui_web.browser.isFirefox);
}

class MockHighContrastSupport implements HighContrastSupport {
Expand Down

0 comments on commit f1387d0

Please sign in to comment.