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

Side by Side Diff: polymer_0.5.0/bower_components/polymer-test-tools/ci-support.js

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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 (function() { 1 (function() {
2 2
3 var files; 3 var files;
4 var browserId; 4 var browserId;
5 5
6 var socketEndpoint = window.location.protocol + '//' + window.location.host; 6 var socketEndpoint = window.location.protocol + '//' + window.location.host;
7 var thisFile = 'ci-support.js'; 7 var thisFile = 'ci-support.js';
8 var thisScript = document.querySelector('script[src$="' + thisFile + '"]'); 8 var thisScript = document.querySelector('script[src$="' + thisFile + '"]');
9 var base = thisScript.src.substring(0, thisScript.src.lastIndexOf('/')+1); 9 var base = thisScript.src.substring(0, thisScript.src.lastIndexOf('/')+1);
10 10
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 error: cleanError(test.err), 172 error: cleanError(test.err),
173 }); 173 });
174 }); 174 });
175 runner.on('end', function() { 175 runner.on('end', function() {
176 emitEvent('browser-end'); 176 emitEvent('browser-end');
177 }); 177 });
178 } 178 }
179 179
180 window.runTests = runTests; 180 window.runTests = runTests;
181 })(); 181 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698