OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
tonyg
2014/02/19 16:44:32
2014
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 'use strict'; | |
6 | |
7 tvcm.require('telemetry.components.results_viewer'); | |
8 | |
9 tvcm.unittest.testSuite('telemetry.components.results_viewer_unittest', | |
10 function() { | |
11 test('testBasic', function() { | |
12 var resultsViewer = new telemetry.components.ResultsViewer(); | |
13 this.addHTMLOutput(resultsViewer); | |
14 }); | |
15 }); | |
OLD | NEW |