Skip to content

Update mocha to the latest version 🚀 - #7

Open
greenkeeper[bot] wants to merge 1 commit into
masterfrom
greenkeeper/mocha-5.0.0
Open

Update mocha to the latest version 🚀#7
greenkeeper[bot] wants to merge 1 commit into
masterfrom
greenkeeper/mocha-5.0.0

Conversation

@greenkeeper

Copy link
Copy Markdown

Version 5.0.0 of mocha was just published.

Dependency mocha
Current Version 4.1.0
Type devDependency

The version 5.0.0 is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of mocha.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


Release Notesv5.0.0

5.0.0 / 2018-01-17

Mocha starts off 2018 right by again dropping support for unmaintained rubbish.

Welcome @vkarpov15 to the team!

💥 Breaking Changes

  • #3148: Drop support for IE9 and IE10 (@Bamieh)
    Practically speaking, only code which consumes (through bundling or otherwise) the userland buffer module should be affected. However, Mocha will no longer test against these browsers, nor apply fixes for them.

🎉 Enhancements

🐛 Fixes

😎 Developer Experience

📖 Documentation

🔩 Other

Commits

The new version differs by 26 commits.

  • cc4a818Release v5.0.0
  • 9f61c04finalize v5.0.0 CHANGELOG [ci skip]
  • a7267b4remove more references to make and Makefile
  • dc58252prep changelog for v5.0.0 [ci skip]
  • f8a1d2adocs(index): add missing doc link (#3203); closes #3135
  • 401997fupdate package-lock.json
  • 50aec7aAdd ability to pass in test files to be ran before positional files via --file (#3190)
  • 7d8abe0fix id and class definition
  • 0a3e32bRewrite Makefile using NPS Scripts. Closes #2352
  • c7730a6Drop TextMate integration inside mocha closes #3118
  • 5c6e99bupdate ESM tests to run against headless chrome instead of saucelabs' chrome only
  • ac1dd70attempt to get travis working again
  • e8b5592Align netlify config with admin panel
  • 565726dAdded Netlify config file
  • e54370ereplace phantomjs with puppeteer for browser tests; closes #3128

There are 26 commits in total.

See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper bot 🌴

greenkeeperBot added a commit that referenced this pull request Feb 14, 2018
@greenkeeper

Copy link
Copy Markdown
Author

Version 5.0.1 just got published.

Update to this version instead 🚀

Commits

The new version differs by 15 commits.

  • 09ce746Release v5.0.1
  • 70027b6update changelog for v5.0.1 [ci skip]
  • 44aae9fadd working wallaby config
  • 412cf27[Update] license year
  • b7377b3rename help-wanted to "help wanted" in stale.yml
  • d975a6afix memory leak when run in v8; closes #3119
  • 3509029update .gitignore to only ignore root mocha.js [ci skip]
  • b57f623fix: When using --delay, .only() no longer works. Issue #1838
  • cd74322Slight copy update on docs for test directory
  • f687d2bupdate docs for the glob
  • 14fc030Add all supported wallaby editors
  • 2e7e4c0rename "common-mistake" label to "faq"
  • bca57f4clarify docs on html, xunit and 3p reporters; closes #1906
  • 2fe2d01Revert "fix travis "before script" script"
  • c0ac1b9fix travis "before script" script

See the full diff

greenkeeperBot added a commit that referenced this pull request Mar 6, 2018
@greenkeeper

Copy link
Copy Markdown
Author

Version 5.0.2 just got published.

Update to this version instead 🚀

Release Notesv5.0.2

5.0.2 / 2018-03-05

This release fixes a class of tests which report as false positives. Certain tests will now break, though they would have previously been reported as passing. Details below. Sorry for the inconvenience!

🐛 Fixes

  • #3226: Do not swallow errors that are thrown asynchronously from passing tests (@boneskull). Example:

    it('should actually fail, sorry!', function (done) {
    // passing assertionassert(true===true);
    

    // test complete & is marked as passing
    done();

    // ...but something evil lurks within
    setTimeout(() => {
    thrownewError('chaos!');
    }, 100);
    });

    Previously to this version, Mocha would have silently swallowed the chaos! exception, and you wouldn't know. Well, now you know. Mocha cannot recover from this gracefully, so it will exit with a nonzero code.

    Maintainers of external reporters: If a test of this class is encountered, the Runner instance will emit the end event twice; you may need to change your reporter to use runner.once('end') intead of runner.on('end').

  • #3093: Fix stack trace reformatting problem (@outsideris)

:nut_and_bolt Other

Commits

The new version differs by 13 commits.

  • f2ee53cRelease v5.0.2
  • ff1bd9eupdate package-lock.json
  • 6a796cbprepare CHANGELOG for v5.0.2 [ci skip]
  • 0542c40update README.md; closes #3191 [ci skip]
  • afcd08fadd MAINTAINERS.md to .fossaignore [ci skip]
  • 3792befadd opencollective header image to assets/
  • 5078fc5persist paths in stack trace which have cwd as infix
  • 2c720a3do not eat exceptions thrown asynchronously from passed tests; closes #3226
  • 3537061Update to correctly licensed browser-stdout version
  • ec8901aremove unused functionality in utils module
  • f71f347rename wallaby.js -> .wallaby.js
  • c4ef568fix PR url
  • 73d55acfix typos in changelog [ci skip]

See the full diff

greenkeeperBot added a commit that referenced this pull request Mar 7, 2018
@greenkeeper

Copy link
Copy Markdown
Author

Version 5.0.3 just got published.

Update to this version instead 🚀

Release Notesv5.0.3

5.0.3 / 2018-03-06

This patch features a fix to address a potential "low severity" ReDoS vulnerability in the diff package (a dependency of Mocha).

🔒 Security Fixes

🔩 Other

Commits

The new version differs by 6 commits.

  • da6e5c9Release v5.0.3
  • 70d9262update CHANGELOG.md for v5.0.3 [ci skip]
  • aaaa5abfix: ReDoS vuln in mocha@5.0.2 › diff@3.3.1 (#3266)
  • 8df5727Tidies up code after review
  • 660bcccadds unit tests covering Base.generateDiff
  • bdcb3c3exposes generateDiff function from base reporter

See the full diff

greenkeeperBot added a commit that referenced this pull request Mar 7, 2018
@greenkeeper

Copy link
Copy Markdown
Author

Version 5.0.4 just got published.

Update to this version instead 🚀

Release Notesv5.0.4

5.0.4 / 2018-03-07

🐛 Fixes

  • #3265: Fixes regression in "watch" functionality introduced in v5.0.2 (@outsideris)
Commits

The new version differs by 3 commits.

  • 851ad29Release v5.0.4
  • 868830aupdate CHANGELOG.md for v5.0.4 [ci skip]
  • eb09421restore removed methods which still used

See the full diff

greenkeeperBot added a commit that referenced this pull request Mar 23, 2018
@greenkeeper

Copy link
Copy Markdown
Author

Version 5.0.5 just got published.

Update to this version instead 🚀

Release Notesv5.0.5

5.0.5 / 2018-03-22

Welcome @outsideris to the team!

🐛 Fixes

📖 Documentation

🔩 Other

Commits

The new version differs by 18 commits.

  • c11e1e2Release v5.0.5
  • b5a556eadd changes for v5.0.5 [ci skip]
  • 424ef84increase default timeout for browser unit tests
  • 19104e3fix debug msg in Runnable#slow; closes #2952
  • f4275b6extract checking AMD bundle as own test
  • 19b764dAddressed feedback
  • 2c19503Fixed linting
  • ab84f02chore(docs): rewording pending tests
  • 6383916fix to bail option works properly with hooks (#3278)
  • 0060884keep hierarchy for skipped suites w/o a callback
  • 39df783docs: Fix typo in an emoji
  • 27af2cffix(changelog): update links to some PRs
  • d76f490chore(ci): Remove PHANTOMJS_CDNURL, nit
  • 86af6bbfix my carelessness in e19e879
  • e19e879ensure lib/mocha.js is not ignored by ESLint

There are 18 commits in total.

See the full diff

greenkeeperBot added a commit that referenced this pull request Apr 13, 2018
@greenkeeper

Copy link
Copy Markdown
Author

Version 5.1.0 just got published.

Update to this version instead 🚀

Release Notesv5.1.0

5.1.0 / 2018-04-12

🎉 Enhancements

🐛 Fixes

📖 Documentation

🔩 Other

Commits

The new version differs by 23 commits ahead by 23, behind by 2.

  • 40d9ea3Release v5.1.0
  • bf34e42update CHANGELOG for v5.1.0 [ci skip]
  • 63462ddImplement API documentation using npm:documantation.
  • 741b0bdfix circular objects in json reporter; closes #2433 (#3318)
  • 8010501fix wrong version in package.json! [ci skip]
  • 94e7289doc precision for exclusive tests
  • 8b6c957optimize package-scripts.js
  • d71b80aPATH workaround for Travis CI bug
  • 7544bd3further build improvements (#3315)
  • 88b9882update package-lock.json for v5.0.5 [ci skip]
  • 4ae26b2improve caching performance in CI (#3310)
  • ff9f3cfupdate stages and build matrices (#3308)
  • f2560e7add update-contributors script; closes #3289 (#3290)
  • cd1c835upgrade eslint; lint
  • 35dac3euse build stages for Travis CI (#3302)

There are 23 commits in total.

See the full diff

greenkeeperBot added a commit that referenced this pull request Apr 19, 2018
@greenkeeper

Copy link
Copy Markdown
Author

Version 5.1.1 just got published.

Update to this version instead 🚀

Release Notesv5.1.1

5.1.1 / 2018-04-18

🐛 Fixes

Commits

The new version differs by 6 commits.

  • e0bc1c1Release v5.1.1
  • eac31feupdate package-lock.json [ci skip]
  • fde558dupdate CHANGELOG.md for v5.1.1 [ci skip]
  • a5fd5e6Revert "remove default js in "--watch-extensions" option; closes #3275"
  • 7057638update outdated info in docs/README.md [ci skip]
  • 5212718fix ESLint problems and consolidate configuration

See the full diff

greenkeeperBot added a commit that referenced this pull request May 19, 2018
@greenkeeper

Copy link
Copy Markdown
Author

Version 5.2.0 just got published.

Update to this version instead 🚀

Release Notesv5.2.0

5.2.0 / 2018-05-18

🎉 Enhancements

🐛 Fixes

📖 Documentation

🔩 Other

Commits

The new version differs by 30 commits.

  • 5bd33a0Release v5.2.0
  • 0a5604freformat missed files
  • 7c8f551ensure scripts/*.js gets prettiered
  • d8ea2baupdate CHANGELOG.md for v5.2.0 [ci skip]
  • 7203ed7update all dependencies
  • fb5393bmigrate Mocha's tests to Unexpected assertion library (#3343)
  • fae9af2docs(docs/index.md): Update "mocha.opts" documentation
  • 9d9e6c6feat(bin/options.js): Add support for comment lines in "mocha.opts"
  • e0306fffix busted lint-staged config
  • f2be6d4Annotate when exceptions are caught but ignored; closes #3354 (#3356)
  • 889e681remove dead code in bin/_mocha
  • 8712b95fix(ocd): re-order Node.js tests in .travis.yml (descending)
  • 3ab0e7efix to exit correctly when using bail flag
  • d87b12eadd Node.js v10 to build; fix win32 issues (#3350)
  • b392af5update package-lock.json for npm@6 [ci skip]

There are 30 commits in total.

See the full diff

greenkeeperBot added a commit that referenced this pull request Feb 18, 2019
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 6.0.0.

Update to this version instead 🚀

Release Notes for v6.0.0

6.0.0 / 2019-02-18

💥 Breaking Changes

  • #3149: Drop Node.js v4.x support (@outsideris)
  • #3556: Changes to command-line options (@boneskull):
    • --grep and --fgrep are now mutually exclusive; attempting to use both will cause Mocha to fail instead of simply ignoring --grep
    • --compilers is no longer supported; attempting to use will cause Mocha to fail with a link to more information
    • -d is no longer an alias for --debug; -d is currently ignored
    • #3275: --watch-extensions no longer implies js; it must be explicitly added (@TheDancingCode)
  • #2908: tap reporter emits error messages (@chrmod)
  • #2819: When conditionally skipping in a before hook, subsequent before hooks and tests in nested suites are now skipped (@bannmoore)
  • #627: Emit filepath in "timeout exceeded" exceptions where applicable (@boneskull)
  • #3556: lib/template.html has moved to lib/browser/template.html (@boneskull)
  • #2576: An exception is now thrown if Mocha fails to parse or find a mocha.opts at a user-specified path (@plroebuck)
  • #3458: Instantiating a Base-extending reporter without a Runner parameter will throw an exception (@craigtaub)
  • #3125: For consumers of Mocha's programmatic API, all exceptions thrown from Mocha now have a code property (and some will have additional metadata). Some Error messages have changed. Please use the code property to check Error types instead of the message property; these descriptions will be localized in the future. (@craigtaub)

📠 Deprecations

These are soft-deprecated, and will emit a warning upon use. Support will be removed in (likely) the next major version of Mocha:

  • -gc users should use --gc-global instead
  • Consumers of the function exported by bin/options should now use the loadMochaOpts or loadOptions (preferred) functions exported by the lib/cli/options module

Regarding the Mocha class constructor (from lib/mocha):

  • Use property color: false instead of useColors: false
  • Use property timeout: false instead of enableTimeouts: false

All of the above deprecations were introduced by #3556.

mocha.opts is now considered "legacy"; please prefer RC file or package.json over mocha.opts.

🎉 Enhancements

Enhancements introduced in #3556:

  • Mocha now supports "RC" files in JS, JSON, YAML, or package.json-based (using mocha property) format

    • .mocharc.js, .mocharc.json, .mocharc.yaml or .mocharc.yml are valid "rc" file names and will be automatically loaded
    • Use --config /path/to/rc/file to specify an explicit path
    • Use --package /path/to/package.json to specify an explicit package.json to read the mocha prop from
    • Use --no-config or --no-package to completely disable loading of configuration via RC file and package.json, respectively
    • Configurations are merged as applicable using the priority list:
      1. Command-line arguments
      2. RC file
      3. package.json
      4. mocha.opts
      5. Mocha's own defaults
    • Check out these example config files
  • Node/V8 flag support in mocha executable:

    • Support all allowed node flags as supported by the running version of node (also thanks to @demurgos)
    • Support any V8 flag by prepending --v8- to the flag name
    • All flags are also supported via config files, package.json properties, or mocha.opts
    • Debug-related flags (e.g., --inspect) now imply--no-timeouts
    • Use of e.g., --debug will automatically invoke --inspect if supported by running version of node
  • Support negation of any Mocha-specific command-line flag by prepending --no- to the flag name

  • Interfaces now have descriptions when listed using --interfaces flag

  • Mocha constructor supports all options

  • --extension is now an alias for --watch-extensions and affects non-watch-mode test runs as well. For example, to run onlytest/*.coffee (not test/*.js), you can do mocha --require coffee-script/register --extensions coffee.

  • #3552: tap reporter is now TAP13-capable (@plroebuck & @mollstam)

  • #3535: Mocha's version can now be queried programmatically via public property Mocha.prototype.version (@plroebuck)

  • #3428: xunit reporter shows diffs (@mlucool)

  • #2529: Runner now emits a retry event when tests are retried (reporters can listen for this) (@catdad)

  • #2962, #3111: In-browser notification support; warn about missing prereqs when --growl supplied (@plroebuck)

🐛 Fixes

📖 Documentation

🔩 Other

Commits

The new version differs by 209 commits ahead by 209, behind by 39.

  • 42303e2Release v6.0.0
  • a553ca7punctuation updates for changelog v6.0.0
  • c710792grammar updates for changelog v6.0.0
  • 9f9293aupdate changelog for v6.0.0
  • a540eb0remove "projects" section from MAINTAINERS.md [ci skip]
  • 52b5c42Uppercased JSON reporter name in describe title (#3739)
  • 82307fbFix .globals to remove falsy values (#3737)
  • 56dc28eRemove unnecessary post-processing code having no effect; closes #3708 (#3733)
  • 16b4281Documentation updates (#3728)
  • 5d9d3ebUpdate nyc
  • 118c9aeRefactor out usages of Suite#_onlyTests and Suite#_onlyTests (#3689) (#3707)
  • 0dacd1fAdd ability to unload files from require cache (redux) (#3726)
  • 66a52f2update release steps [ci skip]
  • 45ae014Refactor lookupFiles and files (#3722)
  • 94c9320fix --reporter-option to allow comma-separated options; closes #3706

There are 209 commits in total.

See the full diff

greenkeeperBot added a commit that referenced this pull request Feb 21, 2019
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 6.0.1.

Update to this version instead 🚀

Release Notes for v6.0.1

6.0.1 / 2019-02-21

The obligatory round of post-major-release bugfixes.

🐛 Fixes

These issues were regressions.

  • #3754 - Mocha again finds test.js when run without arguments (@plroebuck)
  • #3756 - Mocha again supports third-party interfaces via --ui (@boneskull)
  • #3755 - Fix broken --watch (@boneskull)
  • #3759 - Fix unwelcome deprecation notice when Mocha run against languages (CoffeeScript) with implicit return statements; returning a non-undefined value from a describe callback is no longer considered deprecated (@boneskull)

📖 Documentation

Commits

The new version differs by 9 commits.

  • 6d3d6b4Release v6.0.1
  • 2146eceupdate CHANGELOG.md for v6.0.1
  • 7c9221dbackout deprecation of value returned from suite; closes #3744
  • b7cfcebfix --watch not finding any files to execute; closes #3748
  • b836d73Upgrade docdash version - issue #3663
  • 7926f47fix --ui issues, closes #3746
  • 00f2ed9dev dep upgrades from "npm audit" and "npm upgrade"
  • 34afb1afix(cli/run.js): Revert default glob to match Mocha-5.2
  • 6d5a0dbBring the example congfiguration file in line with the documentation. (#3751)

See the full diff

greenkeeperBot added a commit that referenced this pull request Feb 25, 2019
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 6.0.2.

Update to this version instead 🚀

Release Notes for v6.0.2

6.0.2 / 2019-02-25

🐛 Fixes

Two more regressions fixed:

  • #3768: Test file paths no longer dropped from mocha.opts (@boneskull)
  • #3767: --require does not break on module names that look like certain node flags (@boneskull)
Commits

The new version differs by 6 commits.

  • 00a895fRelease v6.0.2
  • 1edce76update CHANGELOG for v6.0.2 [ci skip]
  • 347e9dbfix broken positional arguments in config; ensure positional args are unique; closes #3763
  • 9e31e9dfix handling of bareword args matching node flags; closes #3761
  • 6535965Update "karma-browserify" to eliminate Karma middleware warning (#3762)
  • 37febb6improve issue template. (#3411)

See the full diff

greenkeeperBot added a commit that referenced this pull request Apr 7, 2019
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 6.1.0.

Update to this version instead 🚀

Release Notes for v6.1.0

6.1.0 / 2019-04-07

🔒 Security Fixes

  • #3845: Update dependency "js-yaml" to v3.13.0 per npm security advisory (@plroebuck)

🎉 Enhancements

  • #3766: Make reporter constructor support optional options parameter (@plroebuck)
  • #3760: Add support for config files with .jsonc extension (@sstephant)

📠 Deprecations

These are soft-deprecated, and will emit a warning upon use. Support will be removed in (likely) the next major version of Mocha:

🐛 Fixes

  • #3829: Use cwd-relative pathname to load config file (@plroebuck)
  • #3745: Fix async calls of this.skip() in "before each" hooks (@juergba)
  • #3669: Enable --allow-uncaught for uncaught exceptions thrown inside hooks (@givanse)

and some regressions:

📖 Documentation

🔩 Other

  • #3830: Replace dependency "findup-sync" with "find-up" for faster startup (@cspotcode)
  • #3799: Update devDependencies to fix many npm vulnerabilities (@XhmikosR)
Commits

The new version differs by 28 commits.

  • f4fc95aRelease v6.1.0
  • bd29dbdupdate CHANGELOG for v6.1.0 [ci skip]
  • aaf2b72Use cwd-relative pathname to load config file (#3829)
  • b079d24upgrade deps as per npm audit fix; closes #3854
  • e87c689Deprecate this.skip() for "after all" hooks (#3719)
  • 81cfa90Copy Suite property "root" when cloning; closes #3847 (#3848)
  • 8aa2fc4Fix issue 3714, hide pound icon showing on hover header on docs page (#3850)
  • 586bf78Update JS-YAML to address security issue (#3845)
  • d1024a3Update doc examples "tests.html" (#3811)
  • 1d570e0Delete "/docs/example/chai.js"
  • ade8b90runner.js: "self.test" undefined in Browser (#3835)
  • 0098147Replace findup-sync with find-up for faster startup (#3830)
  • d5ba121Remove "package" flag from sample config file because it can only be passes as CLI arg (#3793)
  • a3089adupdate package-lock
  • 75430ecUpgrade yargs-parser dependency to avoid loading 2 copies of yargs

There are 28 commits in total.

See the full diff

greenkeeperBot added a commit that referenced this pull request Apr 7, 2019
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 6.1.1.

Update to this version instead 🚀

greenkeeperBot added a commit that referenced this pull request Apr 8, 2019
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 6.1.2.

Update to this version instead 🚀

greenkeeperBot added a commit that referenced this pull request Apr 12, 2019
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 6.1.3.

Update to this version instead 🚀

greenkeeperBot added a commit that referenced this pull request Apr 18, 2019
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 6.1.4.

Update to this version instead 🚀

greenkeeperBot added a commit that referenced this pull request Jul 18, 2019
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 6.2.0.

Update to this version instead 🚀

greenkeeperBot added a commit that referenced this pull request Sep 29, 2019
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 6.2.1.

Update to this version instead 🚀

greenkeeperBot added a commit that referenced this pull request Oct 18, 2019
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 6.2.2.

Update to this version instead 🚀

greenkeeperBot added a commit that referenced this pull request Jan 26, 2020
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 7.0.1.

Update to this version instead 🚀

greenkeeperBot added a commit that referenced this pull request Feb 28, 2020
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 7.1.0.

Update to this version instead 🚀

greenkeeperBot added a commit that referenced this pull request Mar 18, 2020
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 7.1.1.

Update to this version instead 🚀

greenkeeperBot added a commit that referenced this pull request Apr 26, 2020
@greenkeeper

Copy link
Copy Markdown
Author
  • The devDependencymocha was updated from 4.1.0 to 7.1.2.

Update to this version instead 🚀

greenkeeperBot added a commit that referenced this pull request May 23, 2020
@greenkeeper

Copy link
Copy Markdown
Author

🚨 Reminder! Less than one month left to migrate your repositories over to Snyk before Greenkeeper says goodbye on June 3rd! 💜 🚚💨 💚

Find out how to migrate to Snyk at greenkeeper.io


  • The devDependencymocha was updated from 4.1.0 to 7.2.0.

Update to this version instead 🚀

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants