[Pkg-javascript-commits] [node-mocha] branch upstream updated (aeb656e -> feaf094)
Jérémy Lal
kapouer at moszumanska.debian.org
Mon Apr 11 22:45:53 UTC 2016
This is an automated email from the git hooks/post-receive script.
kapouer pushed a change to branch upstream
in repository node-mocha.
from aeb656e Imported Upstream version 2.2.5
adds feaf094 Imported Upstream version 2.4.5
No new revisions were added by this update.
Summary of changes:
.eslintrc | 130 +
.gitignore | 16 +
.mailmap | 12 +-
.travis.yml | 7 +
HISTORY.md => CHANGELOG.md | 333 +-
LICENSE | 2 +-
Makefile | 36 +-
README.md | 1 +
bin/.eslintrc | 3 +
bin/_mocha | 51 +-
bin/mocha | 24 +-
bin/options.js | 13 +-
bower.json | 3 +-
component.json | 2 +-
lib/browser/debug.js | 6 +-
lib/browser/escape-string-regexp.js | 11 -
lib/browser/events.js | 68 +-
lib/browser/fs.js | 0
lib/browser/glob.js | 0
lib/browser/path.js | 0
lib/browser/progress.js | 82 +-
lib/browser/tty.js | 9 +-
lib/context.js | 71 +-
lib/hook.js | 12 +-
lib/interfaces/bdd.js | 54 +-
lib/interfaces/common.js | 57 +-
lib/interfaces/exports.js | 16 +-
lib/interfaces/qunit.js | 34 +-
lib/interfaces/tdd.js | 53 +-
lib/mocha.js | 258 +-
lib/ms.js | 67 +-
lib/pending.js | 5 +-
lib/reporters/base.js | 297 +-
lib/reporters/doc.js | 30 +-
lib/reporters/dot.js | 42 +-
lib/reporters/html-cov.js | 44 +-
lib/reporters/html.js | 226 +-
lib/reporters/index.js | 36 +-
lib/reporters/json-cov.js | 81 +-
lib/reporters/json-stream.js | 32 +-
lib/reporters/json.js | 36 +-
lib/reporters/landing.js | 44 +-
lib/reporters/list.js | 30 +-
lib/reporters/markdown.js | 39 +-
lib/reporters/min.js | 9 +-
lib/reporters/nyan.js | 97 +-
lib/reporters/progress.js | 43 +-
lib/reporters/spec.js | 45 +-
lib/reporters/tap.js | 34 +-
lib/reporters/xunit.js | 151 +-
lib/runnable.js | 258 +-
lib/runner.js | 521 +-
lib/suite.js | 224 +-
lib/template.html | 2 +-
lib/test.js | 20 +-
lib/utils.js | 432 +-
mocha.css | 35 +
mocha.js | 11202 ++++++++++++++-----
package.json | 264 +-
scripts/ensure-compatible-npm.sh | 11 +
support/{tail.js => browser-entry.js} | 47 +-
support/compile.js | 157 -
support/foot.js | 1 -
support/head.js | 1 -
test.js | 9 -
test/.eslintrc | 3 +
test/acceptance/misc/only/bdd-require.js | 18 +
test/acceptance/utils.js | 25 +-
test/browser/index.html | 1 +
test/browser/multiple-done.js | 16 +
test/browser/ui.html | 46 +
test/browser/ui.js | 31 +
test/grep.js | 2 +-
test/hook.err.js | 296 -
.../fixtures/hooks/after.hook.async.error.js | 19 +
.../integration/fixtures/hooks/after.hook.error.js | 17 +
.../fixtures/hooks/afterEach.hook.async.error.js | 19 +
.../fixtures/hooks/afterEach.hook.error.js | 17 +
.../fixtures/hooks/before.hook.async.error.js | 19 +
.../fixtures/hooks/before.hook.async.error.tip.js | 11 +
.../fixtures/hooks/before.hook.error.js | 17 +
.../fixtures/hooks/before.hook.error.tip.js | 9 +
.../fixtures/hooks/beforeEach.hook.async.error.js | 19 +
.../fixtures/hooks/beforeEach.hook.error.js | 17 +
.../fixtures/hooks/multiple.hook.async.error.js | 139 +
.../fixtures/hooks/multiple.hook.error.js | 129 +
test/integration/fixtures/multiple.done.before.js | 10 +
.../fixtures/multiple.done.beforeEach.js | 14 +
test/integration/fixtures/multiple.done.specs.js | 10 +
test/integration/fixtures/options/bail.js | 10 +-
test/integration/fixtures/options/delay-fail.js | 5 +
test/integration/fixtures/options/retries.js | 5 +
test/integration/fixtures/passing.js | 11 +
.../fixtures/regression/1794/issue-1794.js | 3 +
.../fixtures/regression/1794/simple-ui.js | 27 +
test/integration/fixtures/regression/issue-1991.js | 47 +
test/integration/fixtures/retries/async.js | 28 +
test/integration/fixtures/retries/early-pass.js | 11 +
test/integration/fixtures/retries/hooks.js | 25 +
test/integration/fixtures/retries/nested.js | 9 +
test/integration/helpers.js | 44 +-
test/integration/hook.err.js | 215 +
test/integration/multiple.done.js | 96 +-
test/integration/options.js | 30 +
test/integration/regression.js | 29 +
test/integration/reporters.js | 63 +
test/integration/retries.js | 107 +
test/reporters/base.js | 15 +-
test/reporters/nyan.js | 2 +-
test/runnable.js | 47 +-
test/runner.js | 43 +-
test/suite.js | 18 +-
test/test.js | 55 +
test/utils.js | 23 +-
114 files changed, 13099 insertions(+), 4709 deletions(-)
create mode 100644 .eslintrc
create mode 100644 .gitignore
rename HISTORY.md => CHANGELOG.md (66%)
create mode 100644 bin/.eslintrc
delete mode 100644 lib/browser/escape-string-regexp.js
delete mode 100644 lib/browser/fs.js
delete mode 100644 lib/browser/glob.js
delete mode 100644 lib/browser/path.js
create mode 100755 scripts/ensure-compatible-npm.sh
rename support/{tail.js => browser-entry.js} (89%)
delete mode 100644 support/compile.js
delete mode 100644 support/foot.js
delete mode 100644 support/head.js
delete mode 100644 test.js
create mode 100644 test/.eslintrc
create mode 100644 test/acceptance/misc/only/bdd-require.js
create mode 100644 test/browser/multiple-done.js
create mode 100644 test/browser/ui.html
create mode 100644 test/browser/ui.js
delete mode 100644 test/hook.err.js
create mode 100644 test/integration/fixtures/hooks/after.hook.async.error.js
create mode 100644 test/integration/fixtures/hooks/after.hook.error.js
create mode 100644 test/integration/fixtures/hooks/afterEach.hook.async.error.js
create mode 100644 test/integration/fixtures/hooks/afterEach.hook.error.js
create mode 100644 test/integration/fixtures/hooks/before.hook.async.error.js
create mode 100644 test/integration/fixtures/hooks/before.hook.async.error.tip.js
create mode 100644 test/integration/fixtures/hooks/before.hook.error.js
create mode 100644 test/integration/fixtures/hooks/before.hook.error.tip.js
create mode 100644 test/integration/fixtures/hooks/beforeEach.hook.async.error.js
create mode 100644 test/integration/fixtures/hooks/beforeEach.hook.error.js
create mode 100644 test/integration/fixtures/hooks/multiple.hook.async.error.js
create mode 100644 test/integration/fixtures/hooks/multiple.hook.error.js
create mode 100644 test/integration/fixtures/multiple.done.before.js
create mode 100644 test/integration/fixtures/multiple.done.beforeEach.js
create mode 100644 test/integration/fixtures/multiple.done.specs.js
create mode 100644 test/integration/fixtures/options/delay-fail.js
create mode 100644 test/integration/fixtures/options/retries.js
create mode 100644 test/integration/fixtures/passing.js
create mode 100644 test/integration/fixtures/regression/1794/issue-1794.js
create mode 100644 test/integration/fixtures/regression/1794/simple-ui.js
create mode 100644 test/integration/fixtures/regression/issue-1991.js
create mode 100644 test/integration/fixtures/retries/async.js
create mode 100644 test/integration/fixtures/retries/early-pass.js
create mode 100644 test/integration/fixtures/retries/hooks.js
create mode 100644 test/integration/fixtures/retries/nested.js
create mode 100644 test/integration/hook.err.js
create mode 100644 test/integration/reporters.js
create mode 100644 test/integration/retries.js
create mode 100644 test/test.js
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-mocha.git
More information about the Pkg-javascript-commits
mailing list