blob: 82d7a5db6b3431dce61143eb9b644e258e29cbaf [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright 2014 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="/telemetry/web_components/results_viewer.html">
<script>
'use strict';
tv.unittest.testSuite(function() {
test('testBasic', function() {
var resultsViewer = new telemetry.web_components.ResultsViewer();
resultsViewer.dataToView = {hello: 'world', nice: ['to', 'see', 'you']};
this.addHTMLOutput(resultsViewer);
});
});
</script>