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

Side by Side Diff: polymer_0.5.0/bower_components/polymer-test-tools/mocha/mocha.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 // CommonJS require() 3 // CommonJS require()
4 4
5 function require(p){ 5 function require(p){
6 var path = require.resolve(p) 6 var path = require.resolve(p)
7 , mod = require.modules[path]; 7 , mod = require.modules[path];
8 if (!mod) throw new Error('failed to require "' + p + '"'); 8 if (!mod) throw new Error('failed to require "' + p + '"');
9 if (!mod.exports) { 9 if (!mod.exports) {
10 mod.exports = {}; 10 mod.exports = {};
(...skipping 5822 matching lines...) Expand 10 before | Expand all | Expand 10 after
5833 if (fn) fn(); 5833 if (fn) fn();
5834 }); 5834 });
5835 }; 5835 };
5836 5836
5837 /** 5837 /**
5838 * Expose the process shim. 5838 * Expose the process shim.
5839 */ 5839 */
5840 5840
5841 Mocha.process = process; 5841 Mocha.process = process;
5842 })(); 5842 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698