Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Unified Diff: perf_insights/perf_insights/ui/reports/weather_report_test.html

Issue 1772833002: Remove SystemHealthMetric (fka RAILScore) (Closed) Base URL: https://github.com/catapult-project/catapult.git@master
Patch Set: fix pi test Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: perf_insights/perf_insights/ui/reports/weather_report_test.html
diff --git a/perf_insights/perf_insights/ui/reports/weather_report_test.html b/perf_insights/perf_insights/ui/reports/weather_report_test.html
deleted file mode 100644
index a191fe1d24a939c64033ef43716427295daee50f..0000000000000000000000000000000000000000
--- a/perf_insights/perf_insights/ui/reports/weather_report_test.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!DOCTYPE html>
-<!--
-Copyright (c) 2013 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.
--->
-
-<link rel="import" href="/perf_insights/mre/mre_result.html">
-<link rel="import" href="/perf_insights/ui/reports/weather_report.html">
-<link rel="import" href="/tracing/base/xhr.html">
-<link rel="import" href="/tracing/core/test_utils.html">
-<link rel="import" href="/tracing/value/value.html">
-
-<script>
-'use strict';
-
-tr.b.unittest.testSuite(function() {
- var test_utils = tr.c.TestUtils;
- test('savedData', function() {
- // TODO(nduca): #1219, stop reading an actual wr file as our test data and
- // use synthetic data.
- var dataString = tr.b.getSync(
- '/perf_insights/ui/reports/wr_result_view_test_data.json');
- var results = JSON.parse(dataString).map(function(rd) {
- return pi.mre.MreResult.fromDict(rd);
- });
-
- var view = document.createElement('pi-ui-r-weather-report');
- view.mapResults = results;
- this.addHTMLOutput(view);
- });
-});
-</script>
-

Powered by Google App Engine
This is Rietveld 408576698