blob: e8fa8e692205f325c5820e3d4780a18f78df6acc [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. 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:observatory/service_io.dart';
import 'package:unittest/unittest.dart';
import 'test_helper.dart';
var tests = <VMTest>[
(VM vm) async {
var result = await vm.invokeRpcNoUpgrade('getVMTimelineMicros', {});
expect(result['type'], equals('Timestamp'));
expect(result['timestamp'], isPositive);
},
];
main(args) async => runVMTests(args, tests);