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

Side by Side Diff: remoting/webapp/crd/html/template_unittest.html

Issue 959963002: [Chromoting] Enable jscompile for webapp unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 Copyright 2014 The Chromium Authors. All rights reserved. 3 Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <html> 7 <html>
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title>Remoting web app unit test</title> 10 <title>Remoting web app unit test</title>
11 <link rel="stylesheet" href="qunit/qunit.css"> 11 <link rel="stylesheet" href="qunit/qunit.css">
12 <link rel="stylesheet" href="menu_button.css"> 12 <link rel="stylesheet" href="menu_button.css">
13 </head> 13 </head>
14 <body> 14 <body>
15 <div id="qunit"></div> 15 <div id="qunit"></div>
16 <div id="qunit-fixture"></div> 16 <div id="qunit-fixture"></div>
17 17
18 <!-- test framework files --> 18 <!-- test framework files -->
19 <script src="qunit/qunit.js"></script> 19 <script src="qunit/qunit.js"></script>
20 <script src="qunit/browser_test_harness.js"></script> 20 <script src="qunit/browser_test_harness.js"></script>
21 <script src="blanketjs/blanket.js"></script> 21 <script src="blanketjs/blanket.js"></script>
22 <script src="blanketjs/qunit_adapter.js"></script> 22 <script src="blanketjs/qunit_adapter.js"></script>
23 <script src="sinonjs/sinon.js"></script> 23 <script src="sinonjs/sinon.js"></script>
24 <script src="sinonjs/sinon-qunit.js"></script> 24 <script src="sinonjs/sinon-qunit.js"></script>
25 <script src="test_start.js"></script>
kelvinp 2015/02/26 00:31:30 rename to test_init? I think the role of the file
garykac 2015/02/28 02:33:33 The function it implements is QUnit.testStart, so
25 26
26 <!-- product files and unit test files--> 27 <!-- product files and unit test files-->
27 <meta-include type="javascript"/> 28 <meta-include type="javascript"/>
28 </body> 29 </body>
29 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698