1<!DOCTYPE html>
2<!--
3Copyright 2014 The Chromium Authors. All rights reserved.
4Use of this source code is governed by a BSD-style license that can be
5found in the LICENSE file.
6-->
7<link rel="import" href="/telemetry/web_components/results_viewer.html">
8<script>
9'use strict';
10
11tvcm.unittest.testSuite(function() {
12  test('testBasic', function() {
13    var resultsViewer = new telemetry.web_components.ResultsViewer();
14    resultsViewer.dataToView = {hello: 'world', nice: ['to', 'see', 'you']};
15    this.addHTMLOutput(resultsViewer);
16  });
17});
18</script>
19