blob: ab0a2abd24013f85ef4beace2cf5a5f5293b2687 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
(async function() {
TestRunner.addResult(`Test the Timeline instrumentation contains Profile event.`);
await TestRunner.loadModule('performance_test_runner');
await TestRunner.showPanel('timeline');
await PerformanceTestRunner.evaluateWithTimeline('42');
const profileEvent = PerformanceTestRunner.findTimelineEvent(TimelineModel.TimelineModel.RecordType.Profile);
TestRunner.check(profileEvent, 'Profile trace event not found.');
TestRunner.completeTest();
})();