OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2013 The Polymer Authors. All rights reserved. | 2 * Copyright 2013 The Polymer Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style | 3 * Use of this source code is governed by a BSD-style |
4 * license that can be found in the LICENSE file. | 4 * license that can be found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 (function() { | 7 (function() { |
8 var thisFile = 'lib/mocha-htmltest.js'; | 8 var thisFile = 'lib/mocha-htmltest.js'; |
9 var base = ''; | 9 var base = ''; |
10 | 10 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 suite(inName, function() { | 61 suite(inName, function() { |
62 setup(htmlSetup); | 62 setup(htmlSetup); |
63 teardown(htmlTeardown); | 63 teardown(htmlTeardown); |
64 inFn(); | 64 inFn(); |
65 }); | 65 }); |
66 }; | 66 }; |
67 | 67 |
68 window.htmlTest = htmlTest; | 68 window.htmlTest = htmlTest; |
69 window.htmlSuite = htmlSuite; | 69 window.htmlSuite = htmlSuite; |
70 })(); | 70 })(); |
OLD | NEW |