blob: 59a57f8b8b8d90da9d5b71a450de5de96ff4b46c [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart = 2.6
import 'package:test/bootstrap/browser.dart';
import 'package:test/test.dart';
import 'common.dart';
import '../frame_timings_common.dart';
void main() {
internalBootstrapBrowserTest(() => testMain);
}
void testMain() {
group('frame timings', () {
setUpCanvasKitTest();
test('collects frame timings', () async {
await runFrameTimingsTest();
});
}, skip: isIosSafari); // TODO: https://github.com/flutter/flutter/issues/60040
}