blob: 09d6b263ed413c16363773a5142d42c702f54a54 [file] [log] [blame]
// Copyright 2020 The Fuchsia 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/test.dart';
import 'helpers.dart';
void main() {
enableLoggingOutput();
test('selectors_benchmarks', () async {
final helper = await PerfTestHelper.make();
await helper.runTestCommand(
(resultsFile) => '/bin/selectors_benchmarks $resultsFile');
}, timeout: Timeout.none);
}