blob: a22189b527946f591dd0bd050ebae01db34c54d1 [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.dart';
void main() {
internalBootstrapBrowserTest(() => testMain);
}
void testMain() {
group('frame timings', () {
setUpCanvasKitTest();
test('collects frame timings', () async {
await runFrameTimingsTest();
});
});
}