blob: 14ec8f2e353da95fddfd17f8b4c0fda472a952d8 [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.
import 'package:test/bootstrap/browser.dart';
import 'package:test/test.dart';
import '../../common/frame_timings_common.dart';
import '../../common/test_initialization.dart';
void main() {
internalBootstrapBrowserTest(() => testMain);
}
void testMain() {
setUp(() async {
await bootstrapAndRunApp(withImplicitView: true);
});
test('collects frame timings', () async {
await runFrameTimingsTest();
});
}