Created
December 20, 2019 11:23
-
-
Save DawnImpulse/4c94588d438c6b1d79dd0f30e245712d to your computer and use it in GitHub Desktop.
Revisions
-
DawnImpulse created this gist
Dec 20, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,51 @@ # This is an example Mocha config containing every Mocha option plus others allow-uncaught: false async-only: false bail: false check-leaks: false color: true delay: false diff: true exit: false # could be expressed as "no-exit: true" extension: - js # fgrep and grep are mutually exclusive # fgrep: something file: - /path/to/some/file - /path/to/some/other/file forbid-only: false forbid-pending: false full-trace: false global: - jQuery - $ # fgrep and grep are mutually exclusive # grep: something growl: false ignore: - /path/to/some/ignored/file inline-diffs: false # needs to be used with grep or fgrep # invert: false opts: false recursive: false reporter: spec reporter-option: - foo=bar - baz=quux require: '@babel/register' retries: 1 slow: 75 sort: false spec: test/**/*.spec.js # the positional arguments! timeout: false # same as "no-timeout: true" or "timeout: 0" trace-warnings: true # node flags ok ui: bdd v8-stack-trace-limit: 100 # V8 flags are prepended with "v8-" watch: false watch-files: - 'lib/**/*.js' - 'test/**/*.js' watch-ignore: - 'lib/vendor'