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

Unified Diff: polymer_0.5.0/bower_components/web-animations-js/node_modules/mocha/mocha.js

Issue 835333002: npm_modules: Add ignored web-animations-js files (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 side-by-side diff with in-line comments
Download patch
Index: polymer_0.5.0/bower_components/web-animations-js/node_modules/mocha/mocha.js
diff --git a/node_modules/mocha/mocha.js b/polymer_0.5.0/bower_components/web-animations-js/node_modules/mocha/mocha.js
similarity index 96%
copy from node_modules/mocha/mocha.js
copy to polymer_0.5.0/bower_components/web-animations-js/node_modules/mocha/mocha.js
index 564a4f3184bc3b0ea32019459ddc915000e35ed6..079aa583723c6ab2c88a1deec2b3e623287bcd2b 100644
--- a/node_modules/mocha/mocha.js
+++ b/polymer_0.5.0/bower_components/web-animations-js/node_modules/mocha/mocha.js
@@ -48,6 +48,7 @@ require.relative = function (parent) {
require.register("browser/debug.js", function(module, exports, require){
+
module.exports = function(type){
return function(){
}
@@ -413,22 +414,8 @@ if (typeof module !== 'undefined') {
}); // module: browser/diff.js
-require.register("browser/escape-string-regexp.js", function(module, exports, require){
-'use strict';
-
-var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
-
-module.exports = function (str) {
- if (typeof str !== 'string') {
- throw new TypeError('Expected a string');
- }
-
- return str.replace(matchOperatorsRe, '\\$&');
-};
-
-}); // module: browser/escape-string-regexp.js
-
require.register("browser/events.js", function(module, exports, require){
+
/**
* Module exports.
*/
@@ -606,17 +593,12 @@ EventEmitter.prototype.emit = function (name) {
return true;
};
-
}); // module: browser/events.js
require.register("browser/fs.js", function(module, exports, require){
}); // module: browser/fs.js
-require.register("browser/glob.js", function(module, exports, require){
-
-}); // module: browser/glob.js
-
require.register("browser/path.js", function(module, exports, require){
}); // module: browser/path.js
@@ -718,28 +700,28 @@ Progress.prototype.draw = function(ctx){
, y = half
, rad = half - 1
, fontSize = this._fontSize;
-
+
ctx.font = fontSize + 'px ' + this._font;
-
+
var angle = Math.PI * 2 * (percent / 100);
ctx.clearRect(0, 0, size, size);
-
+
// outer circle
ctx.strokeStyle = '#9f9f9f';
ctx.beginPath();
ctx.arc(x, y, rad, 0, angle, false);
ctx.stroke();
-
+
// inner circle
ctx.strokeStyle = '#eee';
ctx.beginPath();
ctx.arc(x, y, rad - 1, 0, angle, true);
ctx.stroke();
-
+
// text
var text = this._text || (percent | 0) + '%'
, w = ctx.measureText(text).width;
-
+
ctx.fillText(
text
, x - w / 2 + 1
@@ -751,6 +733,7 @@ Progress.prototype.draw = function(ctx){
}); // module: browser/progress.js
require.register("browser/tty.js", function(module, exports, require){
+
exports.isatty = function(){
return true;
};
@@ -767,6 +750,7 @@ exports.getWindowSize = function(){
}); // module: browser/tty.js
require.register("context.js", function(module, exports, require){
+
/**
* Expose `Context`.
*/
@@ -854,6 +838,7 @@ Context.prototype.inspect = function(){
}); // module: context.js
require.register("hook.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -910,14 +895,14 @@ Hook.prototype.error = function(err){
}); // module: hook.js
require.register("interfaces/bdd.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
var Suite = require('../suite')
, Test = require('../test')
- , utils = require('../utils')
- , escapeRe = require('browser/escape-string-regexp');
+ , utils = require('../utils');
/**
* BDD-style interface:
@@ -1020,7 +1005,7 @@ module.exports = function(suite){
context.it = context.specify = function(title, fn){
var suite = suites[0];
- if (suite.pending) fn = null;
+ if (suite.pending) var fn = null;
var test = new Test(title, fn);
test.file = file;
suite.addTest(test);
@@ -1033,7 +1018,7 @@ module.exports = function(suite){
context.it.only = function(title, fn){
var test = context.it(title, fn);
- var reString = '^' + escapeRe(test.fullTitle()) + '$';
+ var reString = '^' + utils.escapeRegexp(test.fullTitle()) + '$';
mocha.grep(new RegExp(reString));
return test;
};
@@ -1053,6 +1038,7 @@ module.exports = function(suite){
}); // module: interfaces/bdd.js
require.register("interfaces/exports.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -1106,7 +1092,7 @@ module.exports = function(suite){
suites[0].addTest(test);
}
} else {
- suite = Suite.create(suites[0], key);
+ var suite = Suite.create(suites[0], key);
suites.unshift(suite);
visit(obj[key]);
suites.shift();
@@ -1118,6 +1104,7 @@ module.exports = function(suite){
}); // module: interfaces/exports.js
require.register("interfaces/index.js", function(module, exports, require){
+
exports.bdd = require('./bdd');
exports.tdd = require('./tdd');
exports.qunit = require('./qunit');
@@ -1126,13 +1113,13 @@ exports.exports = require('./exports');
}); // module: interfaces/index.js
require.register("interfaces/qunit.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
var Suite = require('../suite')
, Test = require('../test')
- , escapeRe = require('browser/escape-string-regexp')
, utils = require('../utils');
/**
@@ -1237,7 +1224,7 @@ module.exports = function(suite){
context.test.only = function(title, fn){
var test = context.test(title, fn);
- var reString = '^' + escapeRe(test.fullTitle()) + '$';
+ var reString = '^' + utils.escapeRegexp(test.fullTitle()) + '$';
mocha.grep(new RegExp(reString));
};
@@ -1254,14 +1241,14 @@ module.exports = function(suite){
}); // module: interfaces/qunit.js
require.register("interfaces/tdd.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
var Suite = require('../suite')
, Test = require('../test')
- , escapeRe = require('browser/escape-string-regexp')
- , utils = require('../utils');
+ , utils = require('../utils');;
/**
* TDD-style interface:
@@ -1368,7 +1355,7 @@ module.exports = function(suite){
context.test = function(title, fn){
var suite = suites[0];
- if (suite.pending) fn = null;
+ if (suite.pending) var fn = null;
var test = new Test(title, fn);
test.file = file;
suite.addTest(test);
@@ -1381,7 +1368,7 @@ module.exports = function(suite){
context.test.only = function(title, fn){
var test = context.test(title, fn);
- var reString = '^' + escapeRe(test.fullTitle()) + '$';
+ var reString = '^' + utils.escapeRegexp(test.fullTitle()) + '$';
mocha.grep(new RegExp(reString));
};
@@ -1409,7 +1396,6 @@ require.register("mocha.js", function(module, exports, require){
*/
var path = require('browser/path')
- , escapeRe = require('browser/escape-string-regexp')
, utils = require('./utils');
/**
@@ -1621,7 +1607,7 @@ Mocha.prototype._growl = function(runner, reporter) {
Mocha.prototype.grep = function(re){
this.options.grep = 'string' == typeof re
- ? new RegExp(escapeRe(re))
+ ? new RegExp(utils.escapeRegexp(re))
: re;
return this;
};
@@ -1772,16 +1758,6 @@ Mocha.prototype.asyncOnly = function(){
};
/**
- * Disable syntax highlighting (in browser).
- * @returns {Mocha}
- * @api public
- */
-Mocha.prototype.noHighlighting = function() {
- this.options.noHighlighting = true;
- return this;
-};
-
-/**
* Run tests and invoke `fn()` when complete.
*
* @param {Function} fn
@@ -1835,7 +1811,7 @@ var y = d * 365.25;
module.exports = function(val, options){
options = options || {};
if ('string' == typeof val) return parse(val);
- return options['long'] ? longFormat(val) : shortFormat(val);
+ return options.long ? longFormat(val) : shortFormat(val);
};
/**
@@ -1922,6 +1898,7 @@ function plural(ms, n, name) {
}); // module: ms.js
require.register("reporters/base.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -2108,7 +2085,7 @@ exports.list = function(failures){
}
// actual / expected diff
- if (err.showDiff && 'string' == typeof actual && 'string' == typeof expected) {
+ if ('string' == typeof actual && 'string' == typeof expected) {
fmt = color('error title', ' %s) %s:\n%s') + color('error stack', '\n%s\n');
var match = message.match(/^([^:]+): expected/);
msg = '\n ' + color('error message', match ? match[1] : msg);
@@ -2384,6 +2361,7 @@ function sameType(a, b) {
}); // module: reporters/base.js
require.register("reporters/doc.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -2450,6 +2428,7 @@ function Doc(runner) {
}); // module: reporters/doc.js
require.register("reporters/dot.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -2520,6 +2499,7 @@ Dot.prototype.constructor = Dot;
}); // module: reporters/dot.js
require.register("reporters/html-cov.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -2570,10 +2550,10 @@ function coverageClass(n) {
if (n >= 25) return 'low';
return 'terrible';
}
-
}); // module: reporters/html-cov.js
require.register("reporters/html.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -2753,22 +2733,13 @@ function HTML(runner) {
}
/**
- * Makes a URL, preserving querystring ("search") parameters.
- * @param {string} s
- * @returns {string} your new URL
- */
-var makeUrl = function makeUrl(s) {
- var search = window.location.search;
- return (search ? search + '&' : '?' ) + 'grep=' + encodeURIComponent(s);
-};
-
-/**
* Provide suite URL
*
* @param {Object} [suite]
*/
+
HTML.prototype.suiteURL = function(suite){
- return makeUrl(suite.fullTitle());
+ return '?grep=' + encodeURIComponent(suite.fullTitle());
};
/**
@@ -2778,7 +2749,7 @@ HTML.prototype.suiteURL = function(suite){
*/
HTML.prototype.testURL = function(test){
- return makeUrl(test.fullTitle());
+ return '?grep=' + encodeURIComponent(test.fullTitle());
};
/**
@@ -2859,6 +2830,7 @@ function on(el, event, fn) {
}); // module: reporters/html.js
require.register("reporters/index.js", function(module, exports, require){
+
exports.Base = require('./base');
exports.Dot = require('./dot');
exports.Doc = require('./doc');
@@ -2880,6 +2852,7 @@ exports.JSONStream = require('./json-stream');
}); // module: reporters/index.js
require.register("reporters/json-cov.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -2970,7 +2943,7 @@ function map(cov) {
}
return ret;
-}
+};
/**
* Map jscoverage data for a single source file
@@ -3036,6 +3009,7 @@ function clean(test) {
}); // module: reporters/json-cov.js
require.register("reporters/json-stream.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -3072,9 +3046,7 @@ function List(runner) {
});
runner.on('fail', function(test, err){
- test = clean(test);
- test.err = err.message;
- console.log(JSON.stringify(['fail', test]));
+ console.log(JSON.stringify(['fail', clean(test)]));
});
runner.on('end', function(){
@@ -3098,10 +3070,10 @@ function clean(test) {
, duration: test.duration
}
}
-
}); // module: reporters/json-stream.js
require.register("reporters/json.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -3128,7 +3100,6 @@ function JSONReporter(runner) {
Base.call(this, runner);
var tests = []
- , pending = []
, failures = []
, passes = [];
@@ -3140,23 +3111,21 @@ function JSONReporter(runner) {
passes.push(test);
});
- runner.on('fail', function(test){
+ runner.on('fail', function(test, err){
failures.push(test);
- });
-
- runner.on('pending', function(test){
- pending.push(test);
+ if (err === Object(err)) {
+ test.errMsg = err.message;
+ test.errStack = err.stack;
+ }
});
runner.on('end', function(){
var obj = {
stats: self.stats,
tests: tests.map(clean),
- pending: pending.map(clean),
failures: failures.map(clean),
passes: passes.map(clean)
};
-
runner.testResults = obj;
process.stdout.write(JSON.stringify(obj, null, 2));
@@ -3177,27 +3146,16 @@ function clean(test) {
title: test.title,
fullTitle: test.fullTitle(),
duration: test.duration,
- err: errorJSON(test.err || {})
+ err: test.err,
+ errStack: test.err.stack,
+ errMessage: test.err.message
}
}
-/**
- * Transform `error` into a JSON object.
- * @param {Error} err
- * @return {Object}
- */
-
-function errorJSON(err) {
- var res = {};
- Object.getOwnPropertyNames(err).forEach(function(key) {
- res[key] = err[key];
- }, err);
- return res;
-}
-
}); // module: reporters/json.js
require.register("reporters/landing.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -3255,7 +3213,7 @@ function Landing(runner) {
}
runner.on('start', function(){
- stream.write('\n\n\n ');
+ stream.write('\n ');
cursor.hide();
});
@@ -3272,7 +3230,7 @@ function Landing(runner) {
}
// render landing strip
- stream.write('\u001b['+(width+1)+'D\u001b[2A');
+ stream.write('\u001b[4F\n\n');
stream.write(runway());
stream.write('\n ');
stream.write(color('runway', Array(col).join('⋅')));
@@ -3298,10 +3256,10 @@ F.prototype = Base.prototype;
Landing.prototype = new F;
Landing.prototype.constructor = Landing;
-
}); // module: reporters/landing.js
require.register("reporters/list.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -3464,10 +3422,10 @@ function Markdown(runner) {
process.stdout.write(buf);
});
}
-
}); // module: reporters/markdown.js
require.register("reporters/min.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -3700,7 +3658,7 @@ NyanCat.prototype.face = function() {
} else {
return '( - .-)';
}
-};
+}
/**
* Move cursor up `n`.
@@ -3881,6 +3839,7 @@ Progress.prototype.constructor = Progress;
}); // module: reporters/progress.js
require.register("reporters/spec.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -3971,6 +3930,7 @@ Spec.prototype.constructor = Spec;
}); // module: reporters/spec.js
require.register("reporters/tap.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -4047,6 +4007,7 @@ function title(test) {
}); // module: reporters/tap.js
require.register("reporters/xunit.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -4172,6 +4133,7 @@ function cdata(str) {
}); // module: reporters/xunit.js
require.register("runnable.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -4219,7 +4181,6 @@ function Runnable(title, fn) {
this._slow = 75;
this._enableTimeouts = true;
this.timedOut = false;
- this._trace = new Error('done() called multiple times')
}
/**
@@ -4242,7 +4203,6 @@ Runnable.prototype.constructor = Runnable;
Runnable.prototype.timeout = function(ms){
if (0 == arguments.length) return this._timeout;
- if (ms === 0) this._enableTimeouts = false;
if ('string' == typeof ms) ms = milliseconds(ms);
debug('timeout %d', ms);
this._timeout = ms;
@@ -4332,7 +4292,6 @@ Runnable.prototype.resetTimeout = function(){
if (!this._enableTimeouts) return;
this.clearTimeout();
this.timer = setTimeout(function(){
- if (!self._enableTimeouts) return;
self.callback(new Error('timeout of ' + ms + 'ms exceeded'));
self.timedOut = true;
}, ms);
@@ -4369,14 +4328,14 @@ Runnable.prototype.run = function(fn){
function multiple(err) {
if (emitted) return;
emitted = true;
- self.emit('error', err || new Error('done() called multiple times; stacktrace may be inaccurate'));
+ self.emit('error', err || new Error('done() called multiple times'));
}
// finished
function done(err) {
var ms = self.timeout();
if (self.timedOut) return;
- if (finished) return multiple(err || self._trace);
+ if (finished) return multiple(err);
self.clearTimeout();
self.duration = new Date - start;
finished = true;
@@ -4983,24 +4942,17 @@ Runner.prototype.runSuite = function(suite, fn){
Runner.prototype.uncaught = function(err){
if (err) {
- debug('uncaught exception %s', err !== function () {
- return this;
- }.call(err) ? err : ( err.message || err ));
+ debug('uncaught exception %s', err.message);
} else {
debug('uncaught undefined exception');
- err = new Error('Caught undefined error, did you throw without specifying what?');
+ err = new Error('Catched undefined error, did you throw without specifying what?');
}
- err.uncaught = true;
-
+
var runnable = this.currentRunnable;
- if (!runnable) return;
-
- var wasAlreadyDone = runnable.state;
- this.fail(runnable, err);
-
+ if (!runnable || 'failed' == runnable.state) return;
runnable.clearTimeout();
-
- if (wasAlreadyDone) return;
+ err.uncaught = true;
+ this.fail(runnable, err);
// recover from test
if ('test' == runnable.type) {
@@ -5061,7 +5013,7 @@ Runner.prototype.run = function(fn){
Runner.prototype.abort = function(){
debug('aborting');
this._abort = true;
-};
+}
/**
* Filter leaks with the given globals flagged as `ok`.
@@ -5125,6 +5077,7 @@ function filterLeaks(ok, globals) {
}); // module: runner.js
require.register("suite.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -5229,7 +5182,6 @@ Suite.prototype.clone = function(){
Suite.prototype.timeout = function(ms){
if (0 == arguments.length) return this._timeout;
- if (ms === 0) this._enableTimeouts = false;
if ('string' == typeof ms) ms = milliseconds(ms);
debug('timeout %d', ms);
this._timeout = parseInt(ms, 10);
@@ -5249,7 +5201,7 @@ Suite.prototype.enableTimeouts = function(enabled){
debug('enableTimeouts %s', enabled);
this._enableTimeouts = enabled;
return this;
-};
+}
/**
* Set slow `ms` or short-hand such as "2s".
@@ -5478,6 +5430,7 @@ Suite.prototype.eachTest = function(fn){
}); // module: suite.js
require.register("test.js", function(module, exports, require){
+
/**
* Module dependencies.
*/
@@ -5523,9 +5476,6 @@ require.register("utils.js", function(module, exports, require){
var fs = require('browser/fs')
, path = require('browser/path')
- , basename = path.basename
- , exists = fs.existsSync || path.existsSync
- , glob = require('browser/glob')
, join = path.join
, debug = require('browser/debug')('mocha:watch');
@@ -5747,6 +5697,18 @@ exports.clean = function(str) {
};
/**
+ * Escape regular expression characters in `str`.
+ *
+ * @param {String} str
+ * @return {String}
+ * @api private
+ */
+
+exports.escapeRegexp = function(str){
+ return str.replace(/[-\\^$*+?.()|[\]{}]/g, "\\$&");
+};
+
+/**
* Trim the given `str`.
*
* @param {String} str
@@ -5805,7 +5767,7 @@ function highlight(js) {
*/
exports.highlightTags = function(name) {
- var code = document.getElementById('mocha').getElementsByTagName(name);
+ var code = document.getElementsByTagName(name);
for (var i = 0, len = code.length; i < len; ++i) {
code[i].innerHTML = highlight(code[i].innerHTML);
}
@@ -5823,88 +5785,41 @@ exports.highlightTags = function(name) {
exports.stringify = function(obj) {
if (obj instanceof RegExp) return obj.toString();
return JSON.stringify(exports.canonicalize(obj), null, 2).replace(/,(\n|$)/g, '$1');
-};
+}
/**
* Return a new object that has the keys in sorted order.
* @param {Object} obj
- * @param {Array} [stack]
* @return {Object}
* @api private
*/
exports.canonicalize = function(obj, stack) {
- stack = stack || [];
-
- if (exports.indexOf(stack, obj) !== -1) return '[Circular]';
-
- var canonicalizedObj;
-
- if ({}.toString.call(obj) === '[object Array]') {
- stack.push(obj);
- canonicalizedObj = exports.map(obj, function (item) {
- return exports.canonicalize(item, stack);
- });
- stack.pop();
- } else if (typeof obj === 'object' && obj !== null) {
- stack.push(obj);
- canonicalizedObj = {};
- exports.forEach(exports.keys(obj).sort(), function (key) {
- canonicalizedObj[key] = exports.canonicalize(obj[key], stack);
- });
- stack.pop();
- } else {
- canonicalizedObj = obj;
- }
-
- return canonicalizedObj;
- };
-
-/**
- * Lookup file names at the given `path`.
- */
-exports.lookupFiles = function lookupFiles(path, extensions, recursive) {
- var files = [];
- var re = new RegExp('\\.(' + extensions.join('|') + ')$');
-
- if (!exists(path)) {
- if (exists(path + '.js')) {
- path += '.js';
- } else {
- files = glob.sync(path);
- if (!files.length) throw new Error("cannot resolve path (or pattern) '" + path + "'");
- return files;
- }
- }
-
- try {
- var stat = fs.statSync(path);
- if (stat.isFile()) return path;
- }
- catch (ignored) {
- return;
- }
-
- fs.readdirSync(path).forEach(function(file){
- file = join(path, file);
- try {
- var stat = fs.statSync(file);
- if (stat.isDirectory()) {
- if (recursive) {
- files = files.concat(lookupFiles(file, extensions, recursive));
- }
- return;
- }
- }
- catch (ignored) {
- return;
- }
- if (!stat.isFile() || !re.test(file) || basename(file)[0] === '.') return;
- files.push(file);
- });
-
- return files;
-};
+ stack = stack || [];
+
+ if (exports.indexOf(stack, obj) !== -1) return '[Circular]';
+
+ var canonicalizedObj;
+
+ if ({}.toString.call(obj) === '[object Array]') {
+ stack.push(obj);
+ canonicalizedObj = exports.map(obj, function(item) {
+ return exports.canonicalize(item, stack);
+ });
+ stack.pop();
+ } else if (typeof obj === 'object' && obj !== null) {
+ stack.push(obj);
+ canonicalizedObj = {};
+ exports.forEach(exports.keys(obj).sort(), function(key) {
+ canonicalizedObj[key] = exports.canonicalize(obj[key], stack);
+ });
+ stack.pop();
+ } else {
+ canonicalizedObj = obj;
+ }
+
+ return canonicalizedObj;
+ }
}); // module: utils.js
// The global object is "self" in Web Workers.
@@ -6053,8 +5968,7 @@ mocha.run = function(fn){
return Mocha.prototype.run.call(mocha, function(err){
// The DOM Document is not available in Web Workers.
- var document = global.document;
- if (document && document.getElementById('mocha') && options.noHighlighting !== true) {
+ if (global.document) {
Mocha.utils.highlightTags('code');
}
if (fn) fn(err);
@@ -6066,4 +5980,4 @@ mocha.run = function(fn){
*/
Mocha.process = process;
-})();
+})();

Powered by Google App Engine
This is Rietveld 408576698