├── .browserslistrc
├── .editorconfig
├── .eleventy.js
├── .fossaignore
├── .gitattributes
├── .github
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── DEVELOPMENT.md
├── FUNDING.yml
├── ISSUE_TEMPLATE
│ ├── 01-bug.yml
│ ├── 02-documentation.yml
│ ├── 03-feature-request.yml
│ ├── 04-performance.yml
│ ├── 05-repository-tooling.yml
│ └── config.yml
├── PULL_REQUEST_TEMPLATE.md
├── dependabot.yml
├── release-please
│ ├── config.json
│ └── manifest.json
└── workflows
│ ├── browser-test.yml
│ ├── compliance.yml
│ ├── mocha.yml
│ ├── nightly-site-deploy.yml
│ ├── npm-script.yml
│ └── release-please.yml
├── .gitignore
├── .knip.jsonc
├── .lintstagedrc.json
├── .mailmap
├── .markdownlint.json
├── .mocharc.yml
├── .npmrc
├── .nycrc
├── .prettierignore
├── .wallaby.js
├── AUTHORS
├── CHANGELOG.md
├── FUNDING.md
├── LICENSE
├── MAINTAINERS.md
├── PROJECT_CHARTER.md
├── README.md
├── SECURITY.md
├── assets
├── mocha-banner-192.png
├── mocha-banner.svg
├── mocha-fixture-wizard.sketch
├── mocha-logo-128.png
├── mocha-logo-192.png
├── mocha-logo-64.png
├── mocha-logo-96.png
├── mocha-logo.svg
└── opencollective-header.png
├── bin
├── _mocha
└── mocha.js
├── browser-entry.js
├── docs-next
├── .gitignore
├── .prettierrc.json
├── README.md
├── astro.config.ts
├── netlify.toml
├── package-lock.json
├── package.json
├── public
│ ├── example
│ │ ├── Array.js
│ │ └── tests.html
│ └── favicon.svg
├── src
│ ├── components
│ │ ├── Badges.astro
│ │ ├── ClientRedirects.astro
│ │ ├── FixtureWizard.astro
│ │ ├── Footer.astro
│ │ ├── Head.astro
│ │ ├── HomepagePageTitle.astro
│ │ ├── PageTitle.astro
│ │ ├── Supporters.astro
│ │ ├── discord.svg
│ │ ├── icon-dark.svg
│ │ ├── icon-light.svg
│ │ ├── mocha-logo.svg
│ │ ├── mocha-thumbnail.svg
│ │ └── openjsf-logo.svg
│ ├── content
│ │ ├── config.ts
│ │ ├── data
│ │ │ └── sponsors.json
│ │ └── docs
│ │ │ ├── declaring
│ │ │ ├── dynamic-tests.mdx
│ │ │ ├── exclusive-tests.mdx
│ │ │ ├── inclusive-tests.mdx
│ │ │ ├── pending-tests.mdx
│ │ │ └── retrying-tests.mdx
│ │ │ ├── explainers
│ │ │ ├── compilers-deprecation.mdx
│ │ │ ├── count-assertions.mdx
│ │ │ ├── detecting-multiple-calls-to-done.mdx
│ │ │ ├── environment-variables.mdx
│ │ │ ├── find-global-leaks.mdx
│ │ │ ├── global-variables.mdx
│ │ │ ├── nodejs-native-esm-support.mdx
│ │ │ ├── programmatic-usage.mdx
│ │ │ ├── related-tools.mdx
│ │ │ ├── reporter-spec-duration.png
│ │ │ ├── run-cycle-overview.mdx
│ │ │ ├── shared-behaviours.mdx
│ │ │ ├── spies.mdx
│ │ │ ├── stub-stdout.mdx
│ │ │ ├── tagging.mdx
│ │ │ ├── test-duration-range.png
│ │ │ ├── test-duration.mdx
│ │ │ ├── test-fixture-decision-tree.mdx
│ │ │ ├── third-party-reporters.mdx
│ │ │ └── third-party-uis.mdx
│ │ │ ├── features
│ │ │ ├── arrow-functions.mdx
│ │ │ ├── assertions.mdx
│ │ │ ├── asynchronous-code.mdx
│ │ │ ├── diffs.mdx
│ │ │ ├── error-codes.mdx
│ │ │ ├── global-fixtures.mdx
│ │ │ ├── hooks.mdx
│ │ │ ├── parallel-mode.mdx
│ │ │ ├── reporter-string-diffs.png
│ │ │ ├── root-hook-plugins.mdx
│ │ │ └── timeouts.mdx
│ │ │ ├── getting-started.mdx
│ │ │ ├── index.mdx
│ │ │ ├── interfaces
│ │ │ ├── about.mdx
│ │ │ ├── bdd.mdx
│ │ │ ├── exports.mdx
│ │ │ ├── qunit.mdx
│ │ │ ├── require.mdx
│ │ │ ├── tdd.mdx
│ │ │ └── third-party.mdx
│ │ │ ├── reporters
│ │ │ ├── about.mdx
│ │ │ ├── doc.mdx
│ │ │ ├── dot.mdx
│ │ │ ├── html.mdx
│ │ │ ├── json-stream.mdx
│ │ │ ├── json.mdx
│ │ │ ├── landing.mdx
│ │ │ ├── list.mdx
│ │ │ ├── markdown.mdx
│ │ │ ├── min.mdx
│ │ │ ├── nyan.mdx
│ │ │ ├── progress.mdx
│ │ │ ├── reporter-doc.png
│ │ │ ├── reporter-dot.png
│ │ │ ├── reporter-json-stream.png
│ │ │ ├── reporter-json.png
│ │ │ ├── reporter-landing-fail.png
│ │ │ ├── reporter-landing.png
│ │ │ ├── reporter-list.png
│ │ │ ├── reporter-min.png
│ │ │ ├── reporter-nyan.png
│ │ │ ├── reporter-progress.png
│ │ │ ├── reporter-spec-fail.png
│ │ │ ├── reporter-spec.png
│ │ │ ├── reporter-string-diffs.png
│ │ │ ├── reporter-tap.png
│ │ │ ├── spec.mdx
│ │ │ ├── tap.mdx
│ │ │ ├── third-party.mdx
│ │ │ └── xunit.mdx
│ │ │ └── running
│ │ │ ├── browsers.mdx
│ │ │ ├── cli.mdx
│ │ │ ├── configuring.mdx
│ │ │ ├── editor-plugins.mdx
│ │ │ ├── emacs.png
│ │ │ ├── jetbrains-plugin.png
│ │ │ ├── mocha_side_bar.png
│ │ │ ├── reporter-html.png
│ │ │ ├── test-globs.mdx
│ │ │ └── wallaby.png
│ ├── env.d.ts
│ └── style
│ │ └── custom.css
└── tsconfig.json
├── docs
├── .browserslistrc
├── .eleventyignore
├── API.md
├── CNAME
├── LICENSE-CC-BY-4.0
├── README.md
├── _data
│ ├── blocklist.json
│ ├── files.js
│ ├── supporters.js
│ ├── toc.js
│ └── usage.js
├── _headers
├── _includes
│ ├── default.liquid
│ ├── fixture-wizard.html
│ └── supporters.md
├── api-tutorials
│ ├── compilers-deprecation.md
│ ├── count-assertions.md
│ ├── custom-reporter.md
│ ├── environment-variables.md
│ ├── find-global-leaks.md
│ ├── global-variables.md
│ ├── jsdoc.tutorials.json
│ ├── programmatic-usage.md
│ ├── related-tools.md
│ ├── shared-behaviours.md
│ ├── spies.md
│ ├── stub-stdout.md
│ ├── tagging.md
│ ├── third-party-reporters.md
│ └── third-party-uis.md
├── changelogs
│ ├── CHANGELOG_V3_older.md
│ ├── CHANGELOG_V4.md
│ └── README.md
├── css
│ ├── normalize.css
│ ├── prism.css
│ ├── style.css
│ └── supporters.css
├── example
│ ├── Array.js
│ ├── async-dump.js
│ ├── debug-hanging-mocha.js
│ └── tests.html
├── favicon.ico
├── images
│ ├── emacs.png
│ ├── jetbrains-plugin.png
│ ├── join-chat.svg
│ ├── link-icon.svg
│ ├── matomo-logo.png
│ ├── mocha-logo.svg
│ ├── mocha_side_bar.png
│ ├── openjsf-logo.svg
│ ├── reporter-doc.png
│ ├── reporter-dot.png
│ ├── reporter-html.png
│ ├── reporter-json-stream.png
│ ├── reporter-json.png
│ ├── reporter-landing-fail.png
│ ├── reporter-landing.png
│ ├── reporter-list.png
│ ├── reporter-min.png
│ ├── reporter-nyan.png
│ ├── reporter-progress.png
│ ├── reporter-spec-duration.png
│ ├── reporter-spec-fail.png
│ ├── reporter-spec.png
│ ├── reporter-string-diffs.png
│ ├── reporter-tap.png
│ ├── test-duration-range.png
│ ├── wallaby-logo.png
│ └── wallaby.png
├── index.md
└── js
│ └── html5shiv.min.js
├── eslint.config.js
├── example
└── config
│ ├── .mocharc.js
│ ├── .mocharc.json
│ ├── .mocharc.jsonc
│ ├── .mocharc.yml
│ └── README.md
├── index.js
├── jsdoc.conf.json
├── karma.conf.js
├── lib
├── browser
│ ├── highlight-tags.js
│ ├── parse-query.js
│ └── template.html
├── cli
│ ├── cli.js
│ ├── collect-files.js
│ ├── commands.js
│ ├── config.js
│ ├── index.js
│ ├── init.js
│ ├── lookup-files.js
│ ├── node-flags.js
│ ├── one-and-dones.js
│ ├── options.js
│ ├── run-helpers.js
│ ├── run-option-metadata.js
│ ├── run.js
│ └── watch-run.js
├── context.js
├── error-constants.js
├── errors.js
├── hook.js
├── interfaces
│ ├── bdd.js
│ ├── common.js
│ ├── exports.js
│ ├── index.js
│ ├── qunit.js
│ └── tdd.js
├── mocha.js
├── mocharc.json
├── nodejs
│ ├── buffered-worker-pool.js
│ ├── esm-utils.js
│ ├── file-unloader.js
│ ├── parallel-buffered-runner.js
│ ├── reporters
│ │ └── parallel-buffered.js
│ ├── serializer.js
│ └── worker.js
├── pending.js
├── plugin-loader.js
├── reporters
│ ├── base.js
│ ├── doc.js
│ ├── dot.js
│ ├── html.js
│ ├── index.js
│ ├── json-stream.js
│ ├── json.js
│ ├── landing.js
│ ├── list.js
│ ├── markdown.js
│ ├── min.js
│ ├── nyan.js
│ ├── progress.js
│ ├── spec.js
│ ├── tap.js
│ └── xunit.js
├── runnable.js
├── runner.js
├── stats-collector.js
├── suite.js
├── test.js
├── types.d.ts
└── utils.js
├── mocha.css
├── netlify.toml
├── package.json
├── rollup.config.mjs
├── scripts
├── karma-rollup-plugin.js
├── linkify-changelog.mjs
├── pick-from-package-json.mjs
└── update-authors.js
├── test
├── README.md
├── assertions.js
├── browser-specific
│ ├── esm.spec.mjs
│ ├── fixtures
│ │ ├── esm.fixture.mjs
│ │ └── webpack
│ │ │ ├── webpack.config.js
│ │ │ └── webpack.fixture.mjs
│ └── setup.js
├── compiler-cjs
│ ├── test.js
│ ├── test.js.compiled
│ ├── test.ts
│ └── test.ts.compiled
├── compiler-esm
│ ├── package.json
│ ├── test-tla.js
│ ├── test-tla.js.compiled
│ ├── test-tla.mjs
│ ├── test-tla.mjs.compiled
│ ├── test-tla.ts
│ ├── test-tla.ts.compiled
│ ├── test.js
│ ├── test.js.compiled
│ ├── test.mjs
│ ├── test.mjs.compiled
│ ├── test.ts
│ └── test.ts.compiled
├── compiler-fixtures
│ ├── esm-loader.fixture.mjs
│ ├── esm-only-loader
│ │ ├── README.md
│ │ ├── esm-loader.fixture.mjs
│ │ ├── esm.fixture.js
│ │ └── package.json
│ ├── esm.fixture.js
│ ├── foo.fixture.js
│ ├── js.fixture.js
│ └── ts.fixture.js
├── compiler
│ ├── test.coffee
│ └── test.foo
├── integration
│ ├── README.md
│ ├── color.spec.js
│ ├── common-js-require.spec.js
│ ├── compiler-cjs.spec.js
│ ├── compiler-esm-only-loader.spec.js
│ ├── compiler-esm.spec.js
│ ├── compiler-globbing.spec.js
│ ├── config.spec.js
│ ├── deprecate.spec.js
│ ├── diffs.spec.js
│ ├── duplicate-arguments.spec.js
│ ├── esm.spec.js
│ ├── events.spec.js
│ ├── fifo.spec.js
│ ├── file-utils.spec.js
│ ├── fixtures
│ │ ├── __default__.fixture.js
│ │ ├── cascade.fixture.js
│ │ ├── collect-files.fixture.mjs
│ │ ├── common-js-require.fixture.js
│ │ ├── config
│ │ │ ├── mocha-config
│ │ │ │ ├── index.js
│ │ │ │ └── package.json
│ │ │ ├── mocharc.cjs
│ │ │ ├── mocharc.js
│ │ │ ├── mocharc.json
│ │ │ ├── mocharc.yaml
│ │ │ └── mocharcWithThrowError.js
│ │ ├── current-test-title.fixture.js
│ │ ├── deprecate.fixture.js
│ │ ├── diffs
│ │ │ ├── diffs.css.in
│ │ │ ├── diffs.css.out
│ │ │ ├── diffs.fixture.js
│ │ │ └── output
│ │ ├── esm
│ │ │ ├── add.mjs
│ │ │ ├── dir-cjs-require
│ │ │ │ └── index.js
│ │ │ ├── esm-failure.fixture.mjs
│ │ │ ├── esm-success.fixture.mjs
│ │ │ ├── js-folder
│ │ │ │ ├── add.js
│ │ │ │ ├── esm-in-js.fixture.js
│ │ │ │ └── package.json
│ │ │ ├── loader-with-module-not-found
│ │ │ │ ├── loader-that-recognizes-ts.mjs
│ │ │ │ ├── test-that-imports-non-existing-module.fixture.mjs
│ │ │ │ └── test-that-imports-non-existing-module.fixture.ts
│ │ │ ├── syntax-error
│ │ │ │ └── esm-syntax-error.fixture.mjs
│ │ │ ├── test-that-uses-dir-cjs-require.fixture.js
│ │ │ │ └── index.js
│ │ │ └── type-module
│ │ │ │ ├── package.json
│ │ │ │ └── test-that-imports-non-existing-module.fixture.js
│ │ ├── exit.fixture.js
│ │ ├── failing-sync.fixture.js
│ │ ├── failing.fixture.js
│ │ ├── glob
│ │ │ ├── glob.spec.js
│ │ │ └── nested
│ │ │ │ └── glob.spec.js
│ │ ├── hooks
│ │ │ ├── after-each-hook-async-error.fixture.js
│ │ │ ├── after-each-hook-error.fixture.js
│ │ │ ├── after-each-this-test-error.fixture.js
│ │ │ ├── after-hook-async-error.fixture.js
│ │ │ ├── after-hook-deepnested-error.fixture.js
│ │ │ ├── after-hook-error.fixture.js
│ │ │ ├── after-hook-nested-error.fixture.js
│ │ │ ├── before-each-hook-async-error.fixture.js
│ │ │ ├── before-each-hook-error.fixture.js
│ │ │ ├── before-hook-async-error-tip.fixture.js
│ │ │ ├── before-hook-async-error.fixture.js
│ │ │ ├── before-hook-deepnested-error.fixture.js
│ │ │ ├── before-hook-error-tip.fixture.js
│ │ │ ├── before-hook-error.fixture.js
│ │ │ ├── before-hook-nested-error.fixture.js
│ │ │ ├── before-hook-root-error.fixture.js
│ │ │ ├── multiple-hook-async-error.fixture.js
│ │ │ └── multiple-hook-error.fixture.js
│ │ ├── multiple-done-async.fixture.js
│ │ ├── multiple-done-before-each.fixture.js
│ │ ├── multiple-done-before.fixture.js
│ │ ├── multiple-done-specs.fixture.js
│ │ ├── multiple-done-with-error.fixture.js
│ │ ├── multiple-done.fixture.js
│ │ ├── multiple-runs
│ │ │ ├── clean-references.fixture.js
│ │ │ ├── dispose.fixture.js
│ │ │ ├── multiple-runs-with-different-output-suite.fixture.js
│ │ │ ├── multiple-runs-with-flaky-before-each-suite.fixture.js
│ │ │ ├── multiple-runs-with-flaky-before-each.fixture.js
│ │ │ ├── run-thrice-helper.js
│ │ │ ├── run-thrice.fixture.js
│ │ │ ├── start-second-run-if-previous-is-still-running-suite.fixture.js
│ │ │ └── start-second-run-if-previous-is-still-running.fixture.js
│ │ ├── no-diff.fixture.js
│ │ ├── options
│ │ │ ├── allow-uncaught
│ │ │ │ ├── propagate.fixture.js
│ │ │ │ └── this-skip-it.fixture.js
│ │ │ ├── async-only-async.fixture.js
│ │ │ ├── async-only-sync.fixture.js
│ │ │ ├── bail-async.fixture.js
│ │ │ ├── bail-with-after.fixture.js
│ │ │ ├── bail-with-afterEach.fixture.js
│ │ │ ├── bail-with-before.fixture.js
│ │ │ ├── bail-with-beforeEach.fixture.js
│ │ │ ├── bail-with-test.fixture.js
│ │ │ ├── bail.fixture.js
│ │ │ ├── delay-fail.fixture.js
│ │ │ ├── delay-only.fixture.js
│ │ │ ├── delay.fixture.js
│ │ │ ├── dry-run
│ │ │ │ ├── dry-run.fixture.js
│ │ │ │ └── stack-size.fixture.js
│ │ │ ├── extension
│ │ │ │ ├── test1.fixture.js
│ │ │ │ └── test2.fixture.coffee
│ │ │ ├── file-alpha.fixture.js
│ │ │ ├── file-beta.fixture.js
│ │ │ ├── file-theta.fixture.js
│ │ │ ├── forbid-only
│ │ │ │ ├── only-before-each.fixture.js
│ │ │ │ ├── only-before.fixture.js
│ │ │ │ ├── only-empty-suite.fixture.js
│ │ │ │ ├── only-suite.fixture.js
│ │ │ │ ├── only.fixture.js
│ │ │ │ └── passed.fixture.js
│ │ │ ├── forbid-pending
│ │ │ │ ├── before-this-skip.fixture.js
│ │ │ │ ├── beforeEach-this-skip.fixture.js
│ │ │ │ ├── passed.fixture.js
│ │ │ │ ├── pending.fixture.js
│ │ │ │ ├── skip-empty-suite.fixture.js
│ │ │ │ ├── skip-suite.fixture.js
│ │ │ │ ├── skip.fixture.js
│ │ │ │ └── this-skip.fixture.js
│ │ │ ├── grep.fixture.js
│ │ │ ├── ignore
│ │ │ │ ├── fail.fixture.js
│ │ │ │ ├── nested
│ │ │ │ │ ├── fail.fixture.js
│ │ │ │ │ └── pass.fixture.js
│ │ │ │ └── pass.fixture.js
│ │ │ ├── jobs
│ │ │ │ └── fail-in-parallel.fixture.js
│ │ │ ├── only
│ │ │ │ ├── bdd.fixture.js
│ │ │ │ ├── qunit.fixture.js
│ │ │ │ └── tdd.fixture.js
│ │ │ ├── parallel
│ │ │ │ ├── bail.fixture.js
│ │ │ │ ├── exclusive-test-a.fixture.js
│ │ │ │ ├── exclusive-test-b.fixture.js
│ │ │ │ ├── retries-a.fixture.js
│ │ │ │ ├── retries-b.fixture.js
│ │ │ │ ├── syntax-err.fixture.js
│ │ │ │ ├── test-a.fixture.js
│ │ │ │ ├── test-b.fixture.js
│ │ │ │ ├── test-c.fixture.js
│ │ │ │ ├── test-d.fixture.js
│ │ │ │ └── uncaught.fixture.js
│ │ │ ├── reporter-with-options.fixture.js
│ │ │ ├── retries.fixture.js
│ │ │ ├── slow-test.fixture.js
│ │ │ ├── sort-alpha.fixture.js
│ │ │ ├── sort-beta.fixture.js
│ │ │ ├── timeout-unref.fixture.js
│ │ │ └── watch
│ │ │ │ ├── dependency.fixture.js
│ │ │ │ ├── hook.fixture.js
│ │ │ │ ├── test-file-change.fixture.js
│ │ │ │ └── test-with-dependency.fixture.js
│ │ ├── parallel
│ │ │ ├── circular-error-array.mjs
│ │ │ ├── circular-error-object.mjs
│ │ │ ├── getter-error-object.mjs
│ │ │ ├── non-circular-error.mjs
│ │ │ ├── test1.mjs
│ │ │ ├── test2.mjs
│ │ │ ├── test3.mjs
│ │ │ ├── testworkerid1.mjs
│ │ │ ├── testworkerid2.mjs
│ │ │ └── testworkerid3.mjs
│ │ ├── passing-async.fixture.js
│ │ ├── passing-sync.fixture.js
│ │ ├── passing.fixture.js
│ │ ├── pending
│ │ │ ├── programmatic.fixture.js
│ │ │ ├── skip-async-before-hooks.fixture.js
│ │ │ ├── skip-async-before-nested.fixture.js
│ │ │ ├── skip-async-before.fixture.js
│ │ │ ├── skip-async-beforeEach.fixture.js
│ │ │ ├── skip-async-spec.fixture.js
│ │ │ ├── skip-hierarchy.fixture.js
│ │ │ ├── skip-shorthand.fixture.js
│ │ │ ├── skip-sync-after.fixture.js
│ │ │ ├── skip-sync-before-hooks.fixture.js
│ │ │ ├── skip-sync-before-inner.fixture.js
│ │ │ ├── skip-sync-before-nested.fixture.js
│ │ │ ├── skip-sync-before.fixture.js
│ │ │ ├── skip-sync-beforeEach-cond.fixture.js
│ │ │ ├── skip-sync-beforeEach.fixture.js
│ │ │ ├── skip-sync-spec.fixture.js
│ │ │ └── spec.fixture.js
│ │ ├── plugins
│ │ │ ├── global-fixtures
│ │ │ │ ├── global-setup-teardown-multiple.fixture.js
│ │ │ │ ├── global-setup-teardown.fixture.js
│ │ │ │ ├── global-setup.fixture.js
│ │ │ │ └── global-teardown.fixture.js
│ │ │ └── root-hooks
│ │ │ │ ├── esm
│ │ │ │ ├── package.json
│ │ │ │ └── root-hook-defs-esm.fixture.js
│ │ │ │ ├── root-hook-defs-a.fixture.js
│ │ │ │ ├── root-hook-defs-b.fixture.js
│ │ │ │ ├── root-hook-defs-c.fixture.js
│ │ │ │ ├── root-hook-defs-d.fixture.js
│ │ │ │ ├── root-hook-defs-esm-broken.fixture.js
│ │ │ │ ├── root-hook-defs-esm.fixture.mjs
│ │ │ │ ├── root-hook-test-2.fixture.js
│ │ │ │ └── root-hook-test.fixture.js
│ │ ├── regression
│ │ │ ├── issue-1991.fixture.js
│ │ │ ├── issue-2315.fixture.js
│ │ │ ├── issue-2406.fixture.js
│ │ │ └── issue-2417.fixture.js
│ │ ├── reporters.fixture.js
│ │ ├── retries
│ │ │ ├── async.fixture.js
│ │ │ ├── early-pass.fixture.js
│ │ │ ├── hooks.fixture.js
│ │ │ └── nested.fixture.js
│ │ ├── runner
│ │ │ ├── events-bail-retries.fixture.js
│ │ │ ├── events-bail.fixture.js
│ │ │ ├── events-basic.fixture.js
│ │ │ ├── events-delay.fixture.js
│ │ │ └── events-retries.fixture.js
│ │ ├── signals-sigabrt.fixture.js
│ │ ├── signals-sigterm-numeric.fixture.js
│ │ ├── signals-sigterm.fixture.js
│ │ ├── simple-reporter.js
│ │ ├── simple-ui.fixture.js
│ │ ├── suite
│ │ │ ├── suite-no-callback.fixture.js
│ │ │ ├── suite-returning-value.fixture.js
│ │ │ ├── suite-skipped-callback.fixture.js
│ │ │ └── suite-skipped-no-callback.fixture.js
│ │ ├── test-for-simple-ui.fixture.js
│ │ ├── timeout-override.fixture.js
│ │ ├── timeout.fixture.js
│ │ └── uncaught
│ │ │ ├── after-runner.fixture.js
│ │ │ ├── double.fixture.js
│ │ │ ├── fatal.fixture.js
│ │ │ ├── hook.fixture.js
│ │ │ ├── issue-1327.fixture.js
│ │ │ ├── issue-1417.fixture.js
│ │ │ ├── listeners.fixture.js
│ │ │ ├── pending.fixture.js
│ │ │ ├── recover.fixture.js
│ │ │ └── unhandled.fixture.js
│ ├── glob.spec.js
│ ├── helpers.js
│ ├── hook-err.spec.js
│ ├── hooks.spec.js
│ ├── init.spec.js
│ ├── invalid-arguments.spec.js
│ ├── multiple-done.spec.js
│ ├── multiple-runs.spec.js
│ ├── no-diff.spec.js
│ ├── only.spec.js
│ ├── options
│ │ ├── allowUncaught.spec.js
│ │ ├── asyncOnly.spec.js
│ │ ├── bail.spec.js
│ │ ├── delay.spec.js
│ │ ├── dryRun.spec.js
│ │ ├── exit.spec.js
│ │ ├── extension.spec.js
│ │ ├── failZero.spec.js
│ │ ├── file.spec.js
│ │ ├── forbidOnly.spec.js
│ │ ├── forbidPending.spec.js
│ │ ├── grep.spec.js
│ │ ├── ignore.spec.js
│ │ ├── invert.spec.js
│ │ ├── jobs.spec.js
│ │ ├── listInterfaces.spec.js
│ │ ├── listReporters.spec.js
│ │ ├── node-flags.spec.js
│ │ ├── parallel.spec.js
│ │ ├── passOnFailingTestSuite.spec.js
│ │ ├── posixExitCodes.spec.js
│ │ ├── reporter-option.spec.js
│ │ ├── retries.spec.js
│ │ ├── sort.spec.js
│ │ ├── timeout.spec.js
│ │ ├── ui.spec.js
│ │ └── watch.spec.js
│ ├── parallel.spec.js
│ ├── pending.spec.js
│ ├── plugins
│ │ ├── global-fixtures.spec.js
│ │ └── root-hooks.spec.js
│ ├── regression.spec.js
│ ├── reporters.spec.js
│ ├── retries.spec.js
│ ├── suite.spec.js
│ ├── timeout.spec.js
│ └── uncaught.spec.js
├── interfaces
│ ├── bdd.spec.js
│ ├── exports.spec.js
│ ├── qunit.spec.js
│ └── tdd.spec.js
├── jsapi
│ └── index.js
├── node-unit
│ ├── buffered-worker-pool.spec.js
│ ├── cli
│ │ ├── config.spec.js
│ │ ├── fixtures
│ │ │ ├── bad-module.fixture.js
│ │ │ └── bad-require.fixture.js
│ │ ├── mocha-flags.spec.js
│ │ ├── node-flags.spec.js
│ │ ├── options.spec.js
│ │ ├── run-helpers.spec.js
│ │ └── run.spec.js
│ ├── esm-utils.spec.js
│ ├── fixtures
│ │ ├── broken-default-import.mjs
│ │ ├── broken-syntax.ts
│ │ ├── dumb-module.fixture.js
│ │ ├── dumber-module.fixture.js
│ │ ├── module-without-default-export.mjs
│ │ └── wonky-reporter.fixture.js
│ ├── mocha.spec.js
│ ├── parallel-buffered-runner.spec.js
│ ├── reporters
│ │ └── parallel-buffered.spec.js
│ ├── serializer.spec.js
│ ├── stack-trace-filter.spec.js
│ ├── utils.spec.js
│ └── worker.spec.js
├── only
│ ├── bdd-require.spec.js
│ └── global
│ │ ├── bdd.spec.js
│ │ ├── qunit.spec.js
│ │ └── tdd.spec.js
├── reporters
│ ├── base.spec.js
│ ├── doc.spec.js
│ ├── dot.spec.js
│ ├── helpers.js
│ ├── json-stream.spec.js
│ ├── json.spec.js
│ ├── landing.spec.js
│ ├── list.spec.js
│ ├── markdown.spec.js
│ ├── min.spec.js
│ ├── nyan.spec.js
│ ├── progress.spec.js
│ ├── spec.spec.js
│ ├── tap.spec.js
│ └── xunit.spec.js
├── require
│ ├── a.js
│ ├── b.coffee
│ ├── c.js
│ ├── d.coffee
│ └── require.spec.js
├── setup.js
├── smoke
│ └── smoke.spec.js
└── unit
│ ├── context.spec.js
│ ├── duration.spec.js
│ ├── errors.spec.js
│ ├── globals.spec.js
│ ├── grep.spec.js
│ ├── hook-async.spec.js
│ ├── hook-sync-nested.spec.js
│ ├── hook-sync.spec.js
│ ├── hook-timeout.spec.js
│ ├── hook.spec.js
│ ├── mocha.spec.js
│ ├── overspecified-async.spec.js
│ ├── parse-query.spec.js
│ ├── plugin-loader.spec.js
│ ├── required-tokens.spec.js
│ ├── root.spec.js
│ ├── runnable.spec.js
│ ├── runner.spec.js
│ ├── suite.spec.js
│ ├── test.spec.js
│ ├── throw.spec.js
│ ├── timeout.spec.js
│ └── utils.spec.js
└── tsconfig.json
/.browserslistrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.browserslistrc
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.editorconfig
--------------------------------------------------------------------------------
/.eleventy.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.eleventy.js
--------------------------------------------------------------------------------
/.fossaignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.fossaignore
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto eol=lf
2 |
--------------------------------------------------------------------------------
/.github/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/CODE_OF_CONDUCT.md
--------------------------------------------------------------------------------
/.github/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/CONTRIBUTING.md
--------------------------------------------------------------------------------
/.github/DEVELOPMENT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/DEVELOPMENT.md
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | open_collective: mochajs
2 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/01-bug.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/ISSUE_TEMPLATE/01-bug.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/02-documentation.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/ISSUE_TEMPLATE/02-documentation.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/03-feature-request.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/ISSUE_TEMPLATE/03-feature-request.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/04-performance.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/ISSUE_TEMPLATE/04-performance.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/05-repository-tooling.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/ISSUE_TEMPLATE/05-repository-tooling.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/ISSUE_TEMPLATE/config.yml
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/PULL_REQUEST_TEMPLATE.md
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/dependabot.yml
--------------------------------------------------------------------------------
/.github/release-please/config.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/release-please/config.json
--------------------------------------------------------------------------------
/.github/release-please/manifest.json:
--------------------------------------------------------------------------------
1 | {".":"12.0.0-beta-2"}
2 |
--------------------------------------------------------------------------------
/.github/workflows/browser-test.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/workflows/browser-test.yml
--------------------------------------------------------------------------------
/.github/workflows/compliance.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/workflows/compliance.yml
--------------------------------------------------------------------------------
/.github/workflows/mocha.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/workflows/mocha.yml
--------------------------------------------------------------------------------
/.github/workflows/nightly-site-deploy.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/workflows/nightly-site-deploy.yml
--------------------------------------------------------------------------------
/.github/workflows/npm-script.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/workflows/npm-script.yml
--------------------------------------------------------------------------------
/.github/workflows/release-please.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.github/workflows/release-please.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.gitignore
--------------------------------------------------------------------------------
/.knip.jsonc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.knip.jsonc
--------------------------------------------------------------------------------
/.lintstagedrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.lintstagedrc.json
--------------------------------------------------------------------------------
/.mailmap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.mailmap
--------------------------------------------------------------------------------
/.markdownlint.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.markdownlint.json
--------------------------------------------------------------------------------
/.mocharc.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.mocharc.yml
--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
1 | message=Release v%s
--------------------------------------------------------------------------------
/.nycrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.nycrc
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.prettierignore
--------------------------------------------------------------------------------
/.wallaby.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/.wallaby.js
--------------------------------------------------------------------------------
/AUTHORS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/AUTHORS
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/CHANGELOG.md
--------------------------------------------------------------------------------
/FUNDING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/FUNDING.md
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/LICENSE
--------------------------------------------------------------------------------
/MAINTAINERS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/MAINTAINERS.md
--------------------------------------------------------------------------------
/PROJECT_CHARTER.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/PROJECT_CHARTER.md
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/README.md
--------------------------------------------------------------------------------
/SECURITY.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/SECURITY.md
--------------------------------------------------------------------------------
/assets/mocha-banner-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/assets/mocha-banner-192.png
--------------------------------------------------------------------------------
/assets/mocha-banner.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/assets/mocha-banner.svg
--------------------------------------------------------------------------------
/assets/mocha-fixture-wizard.sketch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/assets/mocha-fixture-wizard.sketch
--------------------------------------------------------------------------------
/assets/mocha-logo-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/assets/mocha-logo-128.png
--------------------------------------------------------------------------------
/assets/mocha-logo-192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/assets/mocha-logo-192.png
--------------------------------------------------------------------------------
/assets/mocha-logo-64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/assets/mocha-logo-64.png
--------------------------------------------------------------------------------
/assets/mocha-logo-96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/assets/mocha-logo-96.png
--------------------------------------------------------------------------------
/assets/mocha-logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/assets/mocha-logo.svg
--------------------------------------------------------------------------------
/assets/opencollective-header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/assets/opencollective-header.png
--------------------------------------------------------------------------------
/bin/_mocha:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/bin/_mocha
--------------------------------------------------------------------------------
/bin/mocha.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/bin/mocha.js
--------------------------------------------------------------------------------
/browser-entry.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/browser-entry.js
--------------------------------------------------------------------------------
/docs-next/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/.gitignore
--------------------------------------------------------------------------------
/docs-next/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "bracketSpacing": true
3 | }
4 |
--------------------------------------------------------------------------------
/docs-next/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/README.md
--------------------------------------------------------------------------------
/docs-next/astro.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/astro.config.ts
--------------------------------------------------------------------------------
/docs-next/netlify.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/netlify.toml
--------------------------------------------------------------------------------
/docs-next/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/package-lock.json
--------------------------------------------------------------------------------
/docs-next/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/package.json
--------------------------------------------------------------------------------
/docs-next/public/example/Array.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/public/example/Array.js
--------------------------------------------------------------------------------
/docs-next/public/example/tests.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/public/example/tests.html
--------------------------------------------------------------------------------
/docs-next/public/favicon.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/public/favicon.svg
--------------------------------------------------------------------------------
/docs-next/src/components/Badges.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/Badges.astro
--------------------------------------------------------------------------------
/docs-next/src/components/ClientRedirects.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/ClientRedirects.astro
--------------------------------------------------------------------------------
/docs-next/src/components/FixtureWizard.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/FixtureWizard.astro
--------------------------------------------------------------------------------
/docs-next/src/components/Footer.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/Footer.astro
--------------------------------------------------------------------------------
/docs-next/src/components/Head.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/Head.astro
--------------------------------------------------------------------------------
/docs-next/src/components/HomepagePageTitle.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/HomepagePageTitle.astro
--------------------------------------------------------------------------------
/docs-next/src/components/PageTitle.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/PageTitle.astro
--------------------------------------------------------------------------------
/docs-next/src/components/Supporters.astro:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/Supporters.astro
--------------------------------------------------------------------------------
/docs-next/src/components/discord.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/discord.svg
--------------------------------------------------------------------------------
/docs-next/src/components/icon-dark.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/icon-dark.svg
--------------------------------------------------------------------------------
/docs-next/src/components/icon-light.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/icon-light.svg
--------------------------------------------------------------------------------
/docs-next/src/components/mocha-logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/mocha-logo.svg
--------------------------------------------------------------------------------
/docs-next/src/components/mocha-thumbnail.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/mocha-thumbnail.svg
--------------------------------------------------------------------------------
/docs-next/src/components/openjsf-logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/components/openjsf-logo.svg
--------------------------------------------------------------------------------
/docs-next/src/content/config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/config.ts
--------------------------------------------------------------------------------
/docs-next/src/content/data/sponsors.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/data/sponsors.json
--------------------------------------------------------------------------------
/docs-next/src/content/docs/declaring/dynamic-tests.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/declaring/dynamic-tests.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/declaring/exclusive-tests.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/declaring/exclusive-tests.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/declaring/inclusive-tests.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/declaring/inclusive-tests.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/declaring/pending-tests.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/declaring/pending-tests.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/declaring/retrying-tests.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/declaring/retrying-tests.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/compilers-deprecation.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/compilers-deprecation.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/count-assertions.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/count-assertions.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/detecting-multiple-calls-to-done.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/detecting-multiple-calls-to-done.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/environment-variables.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/environment-variables.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/find-global-leaks.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/find-global-leaks.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/global-variables.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/global-variables.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/nodejs-native-esm-support.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/nodejs-native-esm-support.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/programmatic-usage.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/programmatic-usage.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/related-tools.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/related-tools.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/reporter-spec-duration.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/reporter-spec-duration.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/run-cycle-overview.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/run-cycle-overview.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/shared-behaviours.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/shared-behaviours.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/spies.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/spies.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/stub-stdout.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/stub-stdout.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/tagging.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/tagging.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/test-duration-range.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/test-duration-range.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/test-duration.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/test-duration.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/test-fixture-decision-tree.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/test-fixture-decision-tree.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/third-party-reporters.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/third-party-reporters.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/explainers/third-party-uis.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/explainers/third-party-uis.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/features/arrow-functions.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/features/arrow-functions.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/features/assertions.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/features/assertions.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/features/asynchronous-code.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/features/asynchronous-code.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/features/diffs.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/features/diffs.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/features/error-codes.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/features/error-codes.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/features/global-fixtures.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/features/global-fixtures.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/features/hooks.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/features/hooks.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/features/parallel-mode.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/features/parallel-mode.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/features/reporter-string-diffs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/features/reporter-string-diffs.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/features/root-hook-plugins.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/features/root-hook-plugins.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/features/timeouts.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/features/timeouts.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/getting-started.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/getting-started.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/index.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/index.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/interfaces/about.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/interfaces/about.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/interfaces/bdd.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/interfaces/bdd.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/interfaces/exports.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/interfaces/exports.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/interfaces/qunit.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/interfaces/qunit.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/interfaces/require.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/interfaces/require.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/interfaces/tdd.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/interfaces/tdd.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/interfaces/third-party.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/interfaces/third-party.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/about.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/about.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/doc.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/doc.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/dot.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/dot.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/html.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/html.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/json-stream.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/json-stream.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/json.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/json.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/landing.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/landing.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/list.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/list.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/markdown.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/markdown.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/min.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/min.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/nyan.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/nyan.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/progress.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/progress.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-doc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-doc.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-dot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-dot.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-json-stream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-json-stream.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-json.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-json.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-landing-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-landing-fail.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-landing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-landing.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-list.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-min.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-min.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-nyan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-nyan.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-progress.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-spec-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-spec-fail.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-spec.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-spec.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-string-diffs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-string-diffs.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/reporter-tap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/reporter-tap.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/spec.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/spec.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/tap.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/tap.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/third-party.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/third-party.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/reporters/xunit.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/reporters/xunit.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/running/browsers.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/running/browsers.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/running/cli.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/running/cli.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/running/configuring.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/running/configuring.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/running/editor-plugins.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/running/editor-plugins.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/running/emacs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/running/emacs.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/running/jetbrains-plugin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/running/jetbrains-plugin.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/running/mocha_side_bar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/running/mocha_side_bar.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/running/reporter-html.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/running/reporter-html.png
--------------------------------------------------------------------------------
/docs-next/src/content/docs/running/test-globs.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/running/test-globs.mdx
--------------------------------------------------------------------------------
/docs-next/src/content/docs/running/wallaby.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/content/docs/running/wallaby.png
--------------------------------------------------------------------------------
/docs-next/src/env.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/env.d.ts
--------------------------------------------------------------------------------
/docs-next/src/style/custom.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs-next/src/style/custom.css
--------------------------------------------------------------------------------
/docs-next/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "astro/tsconfigs/strict"
3 | }
4 |
--------------------------------------------------------------------------------
/docs/.browserslistrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/.browserslistrc
--------------------------------------------------------------------------------
/docs/.eleventyignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/.eleventyignore
--------------------------------------------------------------------------------
/docs/API.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/API.md
--------------------------------------------------------------------------------
/docs/CNAME:
--------------------------------------------------------------------------------
1 | mochajs.org
2 |
--------------------------------------------------------------------------------
/docs/LICENSE-CC-BY-4.0:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/LICENSE-CC-BY-4.0
--------------------------------------------------------------------------------
/docs/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/README.md
--------------------------------------------------------------------------------
/docs/_data/blocklist.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/_data/blocklist.json
--------------------------------------------------------------------------------
/docs/_data/files.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/_data/files.js
--------------------------------------------------------------------------------
/docs/_data/supporters.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/_data/supporters.js
--------------------------------------------------------------------------------
/docs/_data/toc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/_data/toc.js
--------------------------------------------------------------------------------
/docs/_data/usage.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/_data/usage.js
--------------------------------------------------------------------------------
/docs/_headers:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/_headers
--------------------------------------------------------------------------------
/docs/_includes/default.liquid:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/_includes/default.liquid
--------------------------------------------------------------------------------
/docs/_includes/fixture-wizard.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/_includes/fixture-wizard.html
--------------------------------------------------------------------------------
/docs/_includes/supporters.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/_includes/supporters.md
--------------------------------------------------------------------------------
/docs/api-tutorials/compilers-deprecation.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/compilers-deprecation.md
--------------------------------------------------------------------------------
/docs/api-tutorials/count-assertions.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/count-assertions.md
--------------------------------------------------------------------------------
/docs/api-tutorials/custom-reporter.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/custom-reporter.md
--------------------------------------------------------------------------------
/docs/api-tutorials/environment-variables.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/environment-variables.md
--------------------------------------------------------------------------------
/docs/api-tutorials/find-global-leaks.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/find-global-leaks.md
--------------------------------------------------------------------------------
/docs/api-tutorials/global-variables.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/global-variables.md
--------------------------------------------------------------------------------
/docs/api-tutorials/jsdoc.tutorials.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/jsdoc.tutorials.json
--------------------------------------------------------------------------------
/docs/api-tutorials/programmatic-usage.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/programmatic-usage.md
--------------------------------------------------------------------------------
/docs/api-tutorials/related-tools.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/related-tools.md
--------------------------------------------------------------------------------
/docs/api-tutorials/shared-behaviours.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/shared-behaviours.md
--------------------------------------------------------------------------------
/docs/api-tutorials/spies.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/spies.md
--------------------------------------------------------------------------------
/docs/api-tutorials/stub-stdout.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/stub-stdout.md
--------------------------------------------------------------------------------
/docs/api-tutorials/tagging.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/tagging.md
--------------------------------------------------------------------------------
/docs/api-tutorials/third-party-reporters.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/third-party-reporters.md
--------------------------------------------------------------------------------
/docs/api-tutorials/third-party-uis.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/api-tutorials/third-party-uis.md
--------------------------------------------------------------------------------
/docs/changelogs/CHANGELOG_V3_older.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/changelogs/CHANGELOG_V3_older.md
--------------------------------------------------------------------------------
/docs/changelogs/CHANGELOG_V4.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/changelogs/CHANGELOG_V4.md
--------------------------------------------------------------------------------
/docs/changelogs/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/changelogs/README.md
--------------------------------------------------------------------------------
/docs/css/normalize.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/css/normalize.css
--------------------------------------------------------------------------------
/docs/css/prism.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/css/prism.css
--------------------------------------------------------------------------------
/docs/css/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/css/style.css
--------------------------------------------------------------------------------
/docs/css/supporters.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/css/supporters.css
--------------------------------------------------------------------------------
/docs/example/Array.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/example/Array.js
--------------------------------------------------------------------------------
/docs/example/async-dump.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/example/async-dump.js
--------------------------------------------------------------------------------
/docs/example/debug-hanging-mocha.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/example/debug-hanging-mocha.js
--------------------------------------------------------------------------------
/docs/example/tests.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/example/tests.html
--------------------------------------------------------------------------------
/docs/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/favicon.ico
--------------------------------------------------------------------------------
/docs/images/emacs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/emacs.png
--------------------------------------------------------------------------------
/docs/images/jetbrains-plugin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/jetbrains-plugin.png
--------------------------------------------------------------------------------
/docs/images/join-chat.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/join-chat.svg
--------------------------------------------------------------------------------
/docs/images/link-icon.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/link-icon.svg
--------------------------------------------------------------------------------
/docs/images/matomo-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/matomo-logo.png
--------------------------------------------------------------------------------
/docs/images/mocha-logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/mocha-logo.svg
--------------------------------------------------------------------------------
/docs/images/mocha_side_bar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/mocha_side_bar.png
--------------------------------------------------------------------------------
/docs/images/openjsf-logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/openjsf-logo.svg
--------------------------------------------------------------------------------
/docs/images/reporter-doc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-doc.png
--------------------------------------------------------------------------------
/docs/images/reporter-dot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-dot.png
--------------------------------------------------------------------------------
/docs/images/reporter-html.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-html.png
--------------------------------------------------------------------------------
/docs/images/reporter-json-stream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-json-stream.png
--------------------------------------------------------------------------------
/docs/images/reporter-json.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-json.png
--------------------------------------------------------------------------------
/docs/images/reporter-landing-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-landing-fail.png
--------------------------------------------------------------------------------
/docs/images/reporter-landing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-landing.png
--------------------------------------------------------------------------------
/docs/images/reporter-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-list.png
--------------------------------------------------------------------------------
/docs/images/reporter-min.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-min.png
--------------------------------------------------------------------------------
/docs/images/reporter-nyan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-nyan.png
--------------------------------------------------------------------------------
/docs/images/reporter-progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-progress.png
--------------------------------------------------------------------------------
/docs/images/reporter-spec-duration.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-spec-duration.png
--------------------------------------------------------------------------------
/docs/images/reporter-spec-fail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-spec-fail.png
--------------------------------------------------------------------------------
/docs/images/reporter-spec.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-spec.png
--------------------------------------------------------------------------------
/docs/images/reporter-string-diffs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-string-diffs.png
--------------------------------------------------------------------------------
/docs/images/reporter-tap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/reporter-tap.png
--------------------------------------------------------------------------------
/docs/images/test-duration-range.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/test-duration-range.png
--------------------------------------------------------------------------------
/docs/images/wallaby-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/wallaby-logo.png
--------------------------------------------------------------------------------
/docs/images/wallaby.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/images/wallaby.png
--------------------------------------------------------------------------------
/docs/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/index.md
--------------------------------------------------------------------------------
/docs/js/html5shiv.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/docs/js/html5shiv.min.js
--------------------------------------------------------------------------------
/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/eslint.config.js
--------------------------------------------------------------------------------
/example/config/.mocharc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/example/config/.mocharc.js
--------------------------------------------------------------------------------
/example/config/.mocharc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/example/config/.mocharc.json
--------------------------------------------------------------------------------
/example/config/.mocharc.jsonc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/example/config/.mocharc.jsonc
--------------------------------------------------------------------------------
/example/config/.mocharc.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/example/config/.mocharc.yml
--------------------------------------------------------------------------------
/example/config/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/example/config/README.md
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 |
3 | module.exports = require("./lib/mocha");
4 |
--------------------------------------------------------------------------------
/jsdoc.conf.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/jsdoc.conf.json
--------------------------------------------------------------------------------
/karma.conf.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/karma.conf.js
--------------------------------------------------------------------------------
/lib/browser/highlight-tags.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/browser/highlight-tags.js
--------------------------------------------------------------------------------
/lib/browser/parse-query.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/browser/parse-query.js
--------------------------------------------------------------------------------
/lib/browser/template.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/browser/template.html
--------------------------------------------------------------------------------
/lib/cli/cli.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/cli.js
--------------------------------------------------------------------------------
/lib/cli/collect-files.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/collect-files.js
--------------------------------------------------------------------------------
/lib/cli/commands.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/commands.js
--------------------------------------------------------------------------------
/lib/cli/config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/config.js
--------------------------------------------------------------------------------
/lib/cli/index.js:
--------------------------------------------------------------------------------
1 | "use strict";
2 |
3 | module.exports = require("./cli");
4 |
--------------------------------------------------------------------------------
/lib/cli/init.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/init.js
--------------------------------------------------------------------------------
/lib/cli/lookup-files.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/lookup-files.js
--------------------------------------------------------------------------------
/lib/cli/node-flags.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/node-flags.js
--------------------------------------------------------------------------------
/lib/cli/one-and-dones.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/one-and-dones.js
--------------------------------------------------------------------------------
/lib/cli/options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/options.js
--------------------------------------------------------------------------------
/lib/cli/run-helpers.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/run-helpers.js
--------------------------------------------------------------------------------
/lib/cli/run-option-metadata.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/run-option-metadata.js
--------------------------------------------------------------------------------
/lib/cli/run.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/run.js
--------------------------------------------------------------------------------
/lib/cli/watch-run.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/cli/watch-run.js
--------------------------------------------------------------------------------
/lib/context.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/context.js
--------------------------------------------------------------------------------
/lib/error-constants.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/error-constants.js
--------------------------------------------------------------------------------
/lib/errors.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/errors.js
--------------------------------------------------------------------------------
/lib/hook.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/hook.js
--------------------------------------------------------------------------------
/lib/interfaces/bdd.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/interfaces/bdd.js
--------------------------------------------------------------------------------
/lib/interfaces/common.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/interfaces/common.js
--------------------------------------------------------------------------------
/lib/interfaces/exports.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/interfaces/exports.js
--------------------------------------------------------------------------------
/lib/interfaces/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/interfaces/index.js
--------------------------------------------------------------------------------
/lib/interfaces/qunit.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/interfaces/qunit.js
--------------------------------------------------------------------------------
/lib/interfaces/tdd.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/interfaces/tdd.js
--------------------------------------------------------------------------------
/lib/mocha.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/mocha.js
--------------------------------------------------------------------------------
/lib/mocharc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/mocharc.json
--------------------------------------------------------------------------------
/lib/nodejs/buffered-worker-pool.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/nodejs/buffered-worker-pool.js
--------------------------------------------------------------------------------
/lib/nodejs/esm-utils.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/nodejs/esm-utils.js
--------------------------------------------------------------------------------
/lib/nodejs/file-unloader.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/nodejs/file-unloader.js
--------------------------------------------------------------------------------
/lib/nodejs/parallel-buffered-runner.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/nodejs/parallel-buffered-runner.js
--------------------------------------------------------------------------------
/lib/nodejs/reporters/parallel-buffered.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/nodejs/reporters/parallel-buffered.js
--------------------------------------------------------------------------------
/lib/nodejs/serializer.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/nodejs/serializer.js
--------------------------------------------------------------------------------
/lib/nodejs/worker.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/nodejs/worker.js
--------------------------------------------------------------------------------
/lib/pending.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/pending.js
--------------------------------------------------------------------------------
/lib/plugin-loader.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/plugin-loader.js
--------------------------------------------------------------------------------
/lib/reporters/base.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/base.js
--------------------------------------------------------------------------------
/lib/reporters/doc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/doc.js
--------------------------------------------------------------------------------
/lib/reporters/dot.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/dot.js
--------------------------------------------------------------------------------
/lib/reporters/html.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/html.js
--------------------------------------------------------------------------------
/lib/reporters/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/index.js
--------------------------------------------------------------------------------
/lib/reporters/json-stream.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/json-stream.js
--------------------------------------------------------------------------------
/lib/reporters/json.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/json.js
--------------------------------------------------------------------------------
/lib/reporters/landing.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/landing.js
--------------------------------------------------------------------------------
/lib/reporters/list.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/list.js
--------------------------------------------------------------------------------
/lib/reporters/markdown.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/markdown.js
--------------------------------------------------------------------------------
/lib/reporters/min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/min.js
--------------------------------------------------------------------------------
/lib/reporters/nyan.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/nyan.js
--------------------------------------------------------------------------------
/lib/reporters/progress.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/progress.js
--------------------------------------------------------------------------------
/lib/reporters/spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/spec.js
--------------------------------------------------------------------------------
/lib/reporters/tap.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/tap.js
--------------------------------------------------------------------------------
/lib/reporters/xunit.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/reporters/xunit.js
--------------------------------------------------------------------------------
/lib/runnable.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/runnable.js
--------------------------------------------------------------------------------
/lib/runner.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/runner.js
--------------------------------------------------------------------------------
/lib/stats-collector.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/stats-collector.js
--------------------------------------------------------------------------------
/lib/suite.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/suite.js
--------------------------------------------------------------------------------
/lib/test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/test.js
--------------------------------------------------------------------------------
/lib/types.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/types.d.ts
--------------------------------------------------------------------------------
/lib/utils.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/lib/utils.js
--------------------------------------------------------------------------------
/mocha.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/mocha.css
--------------------------------------------------------------------------------
/netlify.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/netlify.toml
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/package.json
--------------------------------------------------------------------------------
/rollup.config.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/rollup.config.mjs
--------------------------------------------------------------------------------
/scripts/karma-rollup-plugin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/scripts/karma-rollup-plugin.js
--------------------------------------------------------------------------------
/scripts/linkify-changelog.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/scripts/linkify-changelog.mjs
--------------------------------------------------------------------------------
/scripts/pick-from-package-json.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/scripts/pick-from-package-json.mjs
--------------------------------------------------------------------------------
/scripts/update-authors.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/scripts/update-authors.js
--------------------------------------------------------------------------------
/test/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/README.md
--------------------------------------------------------------------------------
/test/assertions.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/assertions.js
--------------------------------------------------------------------------------
/test/browser-specific/esm.spec.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/browser-specific/esm.spec.mjs
--------------------------------------------------------------------------------
/test/browser-specific/fixtures/esm.fixture.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/browser-specific/fixtures/esm.fixture.mjs
--------------------------------------------------------------------------------
/test/browser-specific/fixtures/webpack/webpack.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/browser-specific/fixtures/webpack/webpack.config.js
--------------------------------------------------------------------------------
/test/browser-specific/fixtures/webpack/webpack.fixture.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/browser-specific/fixtures/webpack/webpack.fixture.mjs
--------------------------------------------------------------------------------
/test/browser-specific/setup.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/browser-specific/setup.js
--------------------------------------------------------------------------------
/test/compiler-cjs/test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-cjs/test.js
--------------------------------------------------------------------------------
/test/compiler-cjs/test.js.compiled:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-cjs/test.js.compiled
--------------------------------------------------------------------------------
/test/compiler-cjs/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-cjs/test.ts
--------------------------------------------------------------------------------
/test/compiler-cjs/test.ts.compiled:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-cjs/test.ts.compiled
--------------------------------------------------------------------------------
/test/compiler-esm/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/package.json
--------------------------------------------------------------------------------
/test/compiler-esm/test-tla.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test-tla.js
--------------------------------------------------------------------------------
/test/compiler-esm/test-tla.js.compiled:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test-tla.js.compiled
--------------------------------------------------------------------------------
/test/compiler-esm/test-tla.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test-tla.mjs
--------------------------------------------------------------------------------
/test/compiler-esm/test-tla.mjs.compiled:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test-tla.mjs.compiled
--------------------------------------------------------------------------------
/test/compiler-esm/test-tla.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test-tla.ts
--------------------------------------------------------------------------------
/test/compiler-esm/test-tla.ts.compiled:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test-tla.ts.compiled
--------------------------------------------------------------------------------
/test/compiler-esm/test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test.js
--------------------------------------------------------------------------------
/test/compiler-esm/test.js.compiled:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test.js.compiled
--------------------------------------------------------------------------------
/test/compiler-esm/test.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test.mjs
--------------------------------------------------------------------------------
/test/compiler-esm/test.mjs.compiled:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test.mjs.compiled
--------------------------------------------------------------------------------
/test/compiler-esm/test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test.ts
--------------------------------------------------------------------------------
/test/compiler-esm/test.ts.compiled:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-esm/test.ts.compiled
--------------------------------------------------------------------------------
/test/compiler-fixtures/esm-loader.fixture.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-fixtures/esm-loader.fixture.mjs
--------------------------------------------------------------------------------
/test/compiler-fixtures/esm-only-loader/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-fixtures/esm-only-loader/README.md
--------------------------------------------------------------------------------
/test/compiler-fixtures/esm-only-loader/esm-loader.fixture.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-fixtures/esm-only-loader/esm-loader.fixture.mjs
--------------------------------------------------------------------------------
/test/compiler-fixtures/esm-only-loader/esm.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-fixtures/esm-only-loader/esm.fixture.js
--------------------------------------------------------------------------------
/test/compiler-fixtures/esm-only-loader/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-fixtures/esm-only-loader/package.json
--------------------------------------------------------------------------------
/test/compiler-fixtures/esm.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-fixtures/esm.fixture.js
--------------------------------------------------------------------------------
/test/compiler-fixtures/foo.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-fixtures/foo.fixture.js
--------------------------------------------------------------------------------
/test/compiler-fixtures/js.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-fixtures/js.fixture.js
--------------------------------------------------------------------------------
/test/compiler-fixtures/ts.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler-fixtures/ts.fixture.js
--------------------------------------------------------------------------------
/test/compiler/test.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/compiler/test.coffee
--------------------------------------------------------------------------------
/test/compiler/test.foo:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/test/integration/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/README.md
--------------------------------------------------------------------------------
/test/integration/color.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/color.spec.js
--------------------------------------------------------------------------------
/test/integration/common-js-require.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/common-js-require.spec.js
--------------------------------------------------------------------------------
/test/integration/compiler-cjs.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/compiler-cjs.spec.js
--------------------------------------------------------------------------------
/test/integration/compiler-esm-only-loader.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/compiler-esm-only-loader.spec.js
--------------------------------------------------------------------------------
/test/integration/compiler-esm.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/compiler-esm.spec.js
--------------------------------------------------------------------------------
/test/integration/compiler-globbing.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/compiler-globbing.spec.js
--------------------------------------------------------------------------------
/test/integration/config.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/config.spec.js
--------------------------------------------------------------------------------
/test/integration/deprecate.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/deprecate.spec.js
--------------------------------------------------------------------------------
/test/integration/diffs.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/diffs.spec.js
--------------------------------------------------------------------------------
/test/integration/duplicate-arguments.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/duplicate-arguments.spec.js
--------------------------------------------------------------------------------
/test/integration/esm.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/esm.spec.js
--------------------------------------------------------------------------------
/test/integration/events.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/events.spec.js
--------------------------------------------------------------------------------
/test/integration/fifo.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fifo.spec.js
--------------------------------------------------------------------------------
/test/integration/file-utils.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/file-utils.spec.js
--------------------------------------------------------------------------------
/test/integration/fixtures/__default__.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/__default__.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/cascade.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/cascade.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/collect-files.fixture.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/collect-files.fixture.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/common-js-require.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/common-js-require.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/config/mocha-config/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/config/mocha-config/index.js
--------------------------------------------------------------------------------
/test/integration/fixtures/config/mocha-config/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/config/mocha-config/package.json
--------------------------------------------------------------------------------
/test/integration/fixtures/config/mocharc.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/config/mocharc.cjs
--------------------------------------------------------------------------------
/test/integration/fixtures/config/mocharc.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/config/mocharc.js
--------------------------------------------------------------------------------
/test/integration/fixtures/config/mocharc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/config/mocharc.json
--------------------------------------------------------------------------------
/test/integration/fixtures/config/mocharc.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/config/mocharc.yaml
--------------------------------------------------------------------------------
/test/integration/fixtures/config/mocharcWithThrowError.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/config/mocharcWithThrowError.js
--------------------------------------------------------------------------------
/test/integration/fixtures/current-test-title.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/current-test-title.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/deprecate.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/deprecate.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/diffs/diffs.css.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/diffs/diffs.css.in
--------------------------------------------------------------------------------
/test/integration/fixtures/diffs/diffs.css.out:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/diffs/diffs.css.out
--------------------------------------------------------------------------------
/test/integration/fixtures/diffs/diffs.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/diffs/diffs.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/diffs/output:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/diffs/output
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/add.mjs:
--------------------------------------------------------------------------------
1 | export function add(a, b) {
2 | return a + b;
3 | }
4 |
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/dir-cjs-require/index.js:
--------------------------------------------------------------------------------
1 | global.testPassesIfThisVariableIsDefined = true
2 |
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/esm-failure.fixture.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/esm/esm-failure.fixture.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/esm-success.fixture.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/esm/esm-success.fixture.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/js-folder/add.js:
--------------------------------------------------------------------------------
1 | export function add(a, b) {
2 | return a + b;
3 | }
4 |
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/js-folder/esm-in-js.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/esm/js-folder/esm-in-js.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/js-folder/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "module"
3 | }
4 |
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/loader-with-module-not-found/loader-that-recognizes-ts.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/esm/loader-with-module-not-found/loader-that-recognizes-ts.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/loader-with-module-not-found/test-that-imports-non-existing-module.fixture.mjs:
--------------------------------------------------------------------------------
1 | import 'non-existent-package';
2 |
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/loader-with-module-not-found/test-that-imports-non-existing-module.fixture.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/esm/loader-with-module-not-found/test-that-imports-non-existing-module.fixture.ts
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/syntax-error/esm-syntax-error.fixture.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/esm/syntax-error/esm-syntax-error.fixture.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/test-that-uses-dir-cjs-require.fixture.js/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/esm/test-that-uses-dir-cjs-require.fixture.js/index.js
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/type-module/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "module"
3 | }
4 |
--------------------------------------------------------------------------------
/test/integration/fixtures/esm/type-module/test-that-imports-non-existing-module.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/esm/type-module/test-that-imports-non-existing-module.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/exit.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/exit.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/failing-sync.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/failing-sync.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/failing.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/failing.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/glob/glob.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/glob/glob.spec.js
--------------------------------------------------------------------------------
/test/integration/fixtures/glob/nested/glob.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/glob/nested/glob.spec.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/after-each-hook-async-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/after-each-hook-async-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/after-each-hook-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/after-each-hook-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/after-each-this-test-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/after-each-this-test-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/after-hook-async-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/after-hook-async-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/after-hook-deepnested-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/after-hook-deepnested-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/after-hook-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/after-hook-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/after-hook-nested-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/after-hook-nested-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/before-each-hook-async-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/before-each-hook-async-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/before-each-hook-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/before-each-hook-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/before-hook-async-error-tip.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/before-hook-async-error-tip.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/before-hook-async-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/before-hook-async-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/before-hook-deepnested-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/before-hook-deepnested-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/before-hook-error-tip.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/before-hook-error-tip.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/before-hook-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/before-hook-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/before-hook-nested-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/before-hook-nested-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/before-hook-root-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/before-hook-root-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/multiple-hook-async-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/multiple-hook-async-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/hooks/multiple-hook-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/hooks/multiple-hook-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-done-async.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-done-async.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-done-before-each.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-done-before-each.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-done-before.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-done-before.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-done-specs.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-done-specs.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-done-with-error.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-done-with-error.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-done.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-done.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-runs/clean-references.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-runs/clean-references.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-runs/dispose.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-runs/dispose.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-runs/multiple-runs-with-different-output-suite.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-runs/multiple-runs-with-different-output-suite.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-runs/multiple-runs-with-flaky-before-each-suite.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-runs/multiple-runs-with-flaky-before-each-suite.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-runs/multiple-runs-with-flaky-before-each.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-runs/multiple-runs-with-flaky-before-each.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-runs/run-thrice-helper.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-runs/run-thrice-helper.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-runs/run-thrice.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-runs/run-thrice.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-runs/start-second-run-if-previous-is-still-running-suite.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-runs/start-second-run-if-previous-is-still-running-suite.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/multiple-runs/start-second-run-if-previous-is-still-running.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/multiple-runs/start-second-run-if-previous-is-still-running.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/no-diff.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/no-diff.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/allow-uncaught/propagate.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/allow-uncaught/propagate.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/allow-uncaught/this-skip-it.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/allow-uncaught/this-skip-it.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/async-only-async.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/async-only-async.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/async-only-sync.fixture.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | it('throws an error', function () {});
4 |
--------------------------------------------------------------------------------
/test/integration/fixtures/options/bail-async.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/bail-async.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/bail-with-after.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/bail-with-after.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/bail-with-afterEach.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/bail-with-afterEach.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/bail-with-before.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/bail-with-before.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/bail-with-beforeEach.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/bail-with-beforeEach.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/bail-with-test.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/bail-with-test.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/bail.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/bail.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/delay-fail.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/delay-fail.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/delay-only.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/delay-only.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/delay.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/delay.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/dry-run/dry-run.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/dry-run/dry-run.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/dry-run/stack-size.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/dry-run/stack-size.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/extension/test1.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/extension/test1.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/extension/test2.fixture.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/extension/test2.fixture.coffee
--------------------------------------------------------------------------------
/test/integration/fixtures/options/file-alpha.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/file-alpha.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/file-beta.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/file-beta.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/file-theta.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/file-theta.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-only/only-before-each.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-only/only-before-each.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-only/only-before.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-only/only-before.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-only/only-empty-suite.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-only/only-empty-suite.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-only/only-suite.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-only/only-suite.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-only/only.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-only/only.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-only/passed.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-only/passed.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-pending/before-this-skip.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-pending/before-this-skip.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-pending/beforeEach-this-skip.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-pending/beforeEach-this-skip.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-pending/passed.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-pending/passed.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-pending/pending.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-pending/pending.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-pending/skip-empty-suite.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-pending/skip-empty-suite.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-pending/skip-suite.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-pending/skip-suite.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-pending/skip.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-pending/skip.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/forbid-pending/this-skip.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/forbid-pending/this-skip.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/grep.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/grep.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/ignore/fail.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/ignore/fail.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/ignore/nested/fail.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/ignore/nested/fail.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/ignore/nested/pass.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/ignore/nested/pass.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/ignore/pass.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/ignore/pass.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/jobs/fail-in-parallel.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/jobs/fail-in-parallel.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/only/bdd.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/only/bdd.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/only/qunit.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/only/qunit.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/only/tdd.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/only/tdd.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/parallel/bail.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/parallel/bail.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/parallel/exclusive-test-a.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/parallel/exclusive-test-a.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/parallel/exclusive-test-b.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/parallel/exclusive-test-b.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/parallel/retries-a.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/parallel/retries-a.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/parallel/retries-b.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/parallel/retries-b.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/parallel/syntax-err.fixture.js:
--------------------------------------------------------------------------------
1 | var foo =
--------------------------------------------------------------------------------
/test/integration/fixtures/options/parallel/test-a.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/parallel/test-a.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/parallel/test-b.fixture.js:
--------------------------------------------------------------------------------
1 | describe('b', function() {
2 | it('should be pending');
3 | });
4 |
--------------------------------------------------------------------------------
/test/integration/fixtures/options/parallel/test-c.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/parallel/test-c.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/parallel/test-d.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/parallel/test-d.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/parallel/uncaught.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/parallel/uncaught.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/reporter-with-options.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/reporter-with-options.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/retries.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/retries.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/slow-test.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/slow-test.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/sort-alpha.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/sort-alpha.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/sort-beta.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/sort-beta.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/timeout-unref.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/timeout-unref.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/watch/dependency.fixture.js:
--------------------------------------------------------------------------------
1 | module.exports.testShouldFail = false;
2 |
--------------------------------------------------------------------------------
/test/integration/fixtures/options/watch/hook.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/watch/hook.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/watch/test-file-change.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/watch/test-file-change.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/options/watch/test-with-dependency.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/options/watch/test-with-dependency.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/parallel/circular-error-array.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/parallel/circular-error-array.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/parallel/circular-error-object.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/parallel/circular-error-object.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/parallel/getter-error-object.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/parallel/getter-error-object.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/parallel/non-circular-error.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/parallel/non-circular-error.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/parallel/test1.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/parallel/test1.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/parallel/test2.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/parallel/test2.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/parallel/test3.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/parallel/test3.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/parallel/testworkerid1.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/parallel/testworkerid1.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/parallel/testworkerid2.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/parallel/testworkerid2.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/parallel/testworkerid3.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/parallel/testworkerid3.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/passing-async.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/passing-async.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/passing-sync.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/passing-sync.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/passing.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/passing.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/programmatic.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/programmatic.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-async-before-hooks.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-async-before-hooks.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-async-before-nested.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-async-before-nested.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-async-before.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-async-before.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-async-beforeEach.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-async-beforeEach.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-async-spec.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-async-spec.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-hierarchy.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-hierarchy.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-shorthand.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-shorthand.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-sync-after.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-sync-after.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-sync-before-hooks.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-sync-before-hooks.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-sync-before-inner.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-sync-before-inner.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-sync-before-nested.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-sync-before-nested.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-sync-before.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-sync-before.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-sync-beforeEach-cond.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-sync-beforeEach-cond.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-sync-beforeEach.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-sync-beforeEach.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/skip-sync-spec.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/skip-sync-spec.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/pending/spec.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/pending/spec.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/global-fixtures/global-setup-teardown-multiple.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/global-fixtures/global-setup-teardown-multiple.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/global-fixtures/global-setup-teardown.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/global-fixtures/global-setup-teardown.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/global-fixtures/global-setup.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/global-fixtures/global-setup.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/global-fixtures/global-teardown.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/global-fixtures/global-teardown.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/root-hooks/esm/package.json:
--------------------------------------------------------------------------------
1 | { "type": "module" }
2 |
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/root-hooks/esm/root-hook-defs-esm.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/root-hooks/esm/root-hook-defs-esm.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/root-hooks/root-hook-defs-a.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/root-hooks/root-hook-defs-a.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/root-hooks/root-hook-defs-b.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/root-hooks/root-hook-defs-b.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/root-hooks/root-hook-defs-c.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/root-hooks/root-hook-defs-c.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/root-hooks/root-hook-defs-d.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/root-hooks/root-hook-defs-d.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/root-hooks/root-hook-defs-esm-broken.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/root-hooks/root-hook-defs-esm-broken.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/root-hooks/root-hook-defs-esm.fixture.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/root-hooks/root-hook-defs-esm.fixture.mjs
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/root-hooks/root-hook-test-2.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/root-hooks/root-hook-test-2.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/plugins/root-hooks/root-hook-test.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/plugins/root-hooks/root-hook-test.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/regression/issue-1991.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/regression/issue-1991.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/regression/issue-2315.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/regression/issue-2315.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/regression/issue-2406.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/regression/issue-2406.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/regression/issue-2417.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/regression/issue-2417.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/reporters.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/reporters.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/retries/async.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/retries/async.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/retries/early-pass.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/retries/early-pass.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/retries/hooks.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/retries/hooks.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/retries/nested.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/retries/nested.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/runner/events-bail-retries.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/runner/events-bail-retries.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/runner/events-bail.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/runner/events-bail.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/runner/events-basic.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/runner/events-basic.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/runner/events-delay.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/runner/events-delay.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/runner/events-retries.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/runner/events-retries.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/signals-sigabrt.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/signals-sigabrt.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/signals-sigterm-numeric.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/signals-sigterm-numeric.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/signals-sigterm.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/signals-sigterm.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/simple-reporter.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/simple-reporter.js
--------------------------------------------------------------------------------
/test/integration/fixtures/simple-ui.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/simple-ui.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/suite/suite-no-callback.fixture.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | describe('a suite without a callback');
4 |
--------------------------------------------------------------------------------
/test/integration/fixtures/suite/suite-returning-value.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/suite/suite-returning-value.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/suite/suite-skipped-callback.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/suite/suite-skipped-callback.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/suite/suite-skipped-no-callback.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/suite/suite-skipped-no-callback.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/test-for-simple-ui.fixture.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | test('pass', function () {
4 | // pass
5 | });
6 |
--------------------------------------------------------------------------------
/test/integration/fixtures/timeout-override.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/timeout-override.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/timeout.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/timeout.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/uncaught/after-runner.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/uncaught/after-runner.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/uncaught/double.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/uncaught/double.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/uncaught/fatal.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/uncaught/fatal.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/uncaught/hook.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/uncaught/hook.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/uncaught/issue-1327.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/uncaught/issue-1327.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/uncaught/issue-1417.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/uncaught/issue-1417.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/uncaught/listeners.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/uncaught/listeners.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/uncaught/pending.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/uncaught/pending.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/uncaught/recover.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/uncaught/recover.fixture.js
--------------------------------------------------------------------------------
/test/integration/fixtures/uncaught/unhandled.fixture.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/fixtures/uncaught/unhandled.fixture.js
--------------------------------------------------------------------------------
/test/integration/glob.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/glob.spec.js
--------------------------------------------------------------------------------
/test/integration/helpers.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/helpers.js
--------------------------------------------------------------------------------
/test/integration/hook-err.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/hook-err.spec.js
--------------------------------------------------------------------------------
/test/integration/hooks.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/hooks.spec.js
--------------------------------------------------------------------------------
/test/integration/init.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/init.spec.js
--------------------------------------------------------------------------------
/test/integration/invalid-arguments.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/invalid-arguments.spec.js
--------------------------------------------------------------------------------
/test/integration/multiple-done.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/multiple-done.spec.js
--------------------------------------------------------------------------------
/test/integration/multiple-runs.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/multiple-runs.spec.js
--------------------------------------------------------------------------------
/test/integration/no-diff.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/no-diff.spec.js
--------------------------------------------------------------------------------
/test/integration/only.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/only.spec.js
--------------------------------------------------------------------------------
/test/integration/options/allowUncaught.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/allowUncaught.spec.js
--------------------------------------------------------------------------------
/test/integration/options/asyncOnly.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/asyncOnly.spec.js
--------------------------------------------------------------------------------
/test/integration/options/bail.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/bail.spec.js
--------------------------------------------------------------------------------
/test/integration/options/delay.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/delay.spec.js
--------------------------------------------------------------------------------
/test/integration/options/dryRun.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/dryRun.spec.js
--------------------------------------------------------------------------------
/test/integration/options/exit.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/exit.spec.js
--------------------------------------------------------------------------------
/test/integration/options/extension.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/extension.spec.js
--------------------------------------------------------------------------------
/test/integration/options/failZero.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/failZero.spec.js
--------------------------------------------------------------------------------
/test/integration/options/file.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/file.spec.js
--------------------------------------------------------------------------------
/test/integration/options/forbidOnly.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/forbidOnly.spec.js
--------------------------------------------------------------------------------
/test/integration/options/forbidPending.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/forbidPending.spec.js
--------------------------------------------------------------------------------
/test/integration/options/grep.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/grep.spec.js
--------------------------------------------------------------------------------
/test/integration/options/ignore.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/ignore.spec.js
--------------------------------------------------------------------------------
/test/integration/options/invert.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/invert.spec.js
--------------------------------------------------------------------------------
/test/integration/options/jobs.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/jobs.spec.js
--------------------------------------------------------------------------------
/test/integration/options/listInterfaces.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/listInterfaces.spec.js
--------------------------------------------------------------------------------
/test/integration/options/listReporters.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/listReporters.spec.js
--------------------------------------------------------------------------------
/test/integration/options/node-flags.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/node-flags.spec.js
--------------------------------------------------------------------------------
/test/integration/options/parallel.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/parallel.spec.js
--------------------------------------------------------------------------------
/test/integration/options/passOnFailingTestSuite.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/passOnFailingTestSuite.spec.js
--------------------------------------------------------------------------------
/test/integration/options/posixExitCodes.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/posixExitCodes.spec.js
--------------------------------------------------------------------------------
/test/integration/options/reporter-option.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/reporter-option.spec.js
--------------------------------------------------------------------------------
/test/integration/options/retries.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/retries.spec.js
--------------------------------------------------------------------------------
/test/integration/options/sort.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/sort.spec.js
--------------------------------------------------------------------------------
/test/integration/options/timeout.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/timeout.spec.js
--------------------------------------------------------------------------------
/test/integration/options/ui.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/ui.spec.js
--------------------------------------------------------------------------------
/test/integration/options/watch.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/options/watch.spec.js
--------------------------------------------------------------------------------
/test/integration/parallel.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/parallel.spec.js
--------------------------------------------------------------------------------
/test/integration/pending.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/pending.spec.js
--------------------------------------------------------------------------------
/test/integration/plugins/global-fixtures.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/plugins/global-fixtures.spec.js
--------------------------------------------------------------------------------
/test/integration/plugins/root-hooks.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/plugins/root-hooks.spec.js
--------------------------------------------------------------------------------
/test/integration/regression.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/regression.spec.js
--------------------------------------------------------------------------------
/test/integration/reporters.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/reporters.spec.js
--------------------------------------------------------------------------------
/test/integration/retries.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/retries.spec.js
--------------------------------------------------------------------------------
/test/integration/suite.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/suite.spec.js
--------------------------------------------------------------------------------
/test/integration/timeout.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/timeout.spec.js
--------------------------------------------------------------------------------
/test/integration/uncaught.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/integration/uncaught.spec.js
--------------------------------------------------------------------------------
/test/interfaces/bdd.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/interfaces/bdd.spec.js
--------------------------------------------------------------------------------
/test/interfaces/exports.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/interfaces/exports.spec.js
--------------------------------------------------------------------------------
/test/interfaces/qunit.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/interfaces/qunit.spec.js
--------------------------------------------------------------------------------
/test/interfaces/tdd.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/interfaces/tdd.spec.js
--------------------------------------------------------------------------------
/test/jsapi/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/jsapi/index.js
--------------------------------------------------------------------------------
/test/node-unit/buffered-worker-pool.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/buffered-worker-pool.spec.js
--------------------------------------------------------------------------------
/test/node-unit/cli/config.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/cli/config.spec.js
--------------------------------------------------------------------------------
/test/node-unit/cli/fixtures/bad-module.fixture.js:
--------------------------------------------------------------------------------
1 | throw new Error("this module is wonky");
2 |
--------------------------------------------------------------------------------
/test/node-unit/cli/fixtures/bad-require.fixture.js:
--------------------------------------------------------------------------------
1 | require("fake");
2 |
--------------------------------------------------------------------------------
/test/node-unit/cli/mocha-flags.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/cli/mocha-flags.spec.js
--------------------------------------------------------------------------------
/test/node-unit/cli/node-flags.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/cli/node-flags.spec.js
--------------------------------------------------------------------------------
/test/node-unit/cli/options.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/cli/options.spec.js
--------------------------------------------------------------------------------
/test/node-unit/cli/run-helpers.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/cli/run-helpers.spec.js
--------------------------------------------------------------------------------
/test/node-unit/cli/run.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/cli/run.spec.js
--------------------------------------------------------------------------------
/test/node-unit/esm-utils.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/esm-utils.spec.js
--------------------------------------------------------------------------------
/test/node-unit/fixtures/broken-default-import.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/fixtures/broken-default-import.mjs
--------------------------------------------------------------------------------
/test/node-unit/fixtures/broken-syntax.ts:
--------------------------------------------------------------------------------
1 | @!
2 |
--------------------------------------------------------------------------------
/test/node-unit/fixtures/dumb-module.fixture.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/node-unit/fixtures/dumber-module.fixture.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/node-unit/fixtures/module-without-default-export.mjs:
--------------------------------------------------------------------------------
1 | export const value = 42;
2 |
--------------------------------------------------------------------------------
/test/node-unit/fixtures/wonky-reporter.fixture.js:
--------------------------------------------------------------------------------
1 | throw new Error('bad weirdness in this one');
2 |
--------------------------------------------------------------------------------
/test/node-unit/mocha.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/mocha.spec.js
--------------------------------------------------------------------------------
/test/node-unit/parallel-buffered-runner.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/parallel-buffered-runner.spec.js
--------------------------------------------------------------------------------
/test/node-unit/reporters/parallel-buffered.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/reporters/parallel-buffered.spec.js
--------------------------------------------------------------------------------
/test/node-unit/serializer.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/serializer.spec.js
--------------------------------------------------------------------------------
/test/node-unit/stack-trace-filter.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/stack-trace-filter.spec.js
--------------------------------------------------------------------------------
/test/node-unit/utils.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/utils.spec.js
--------------------------------------------------------------------------------
/test/node-unit/worker.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/node-unit/worker.spec.js
--------------------------------------------------------------------------------
/test/only/bdd-require.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/only/bdd-require.spec.js
--------------------------------------------------------------------------------
/test/only/global/bdd.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/only/global/bdd.spec.js
--------------------------------------------------------------------------------
/test/only/global/qunit.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/only/global/qunit.spec.js
--------------------------------------------------------------------------------
/test/only/global/tdd.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/only/global/tdd.spec.js
--------------------------------------------------------------------------------
/test/reporters/base.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/base.spec.js
--------------------------------------------------------------------------------
/test/reporters/doc.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/doc.spec.js
--------------------------------------------------------------------------------
/test/reporters/dot.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/dot.spec.js
--------------------------------------------------------------------------------
/test/reporters/helpers.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/helpers.js
--------------------------------------------------------------------------------
/test/reporters/json-stream.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/json-stream.spec.js
--------------------------------------------------------------------------------
/test/reporters/json.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/json.spec.js
--------------------------------------------------------------------------------
/test/reporters/landing.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/landing.spec.js
--------------------------------------------------------------------------------
/test/reporters/list.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/list.spec.js
--------------------------------------------------------------------------------
/test/reporters/markdown.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/markdown.spec.js
--------------------------------------------------------------------------------
/test/reporters/min.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/min.spec.js
--------------------------------------------------------------------------------
/test/reporters/nyan.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/nyan.spec.js
--------------------------------------------------------------------------------
/test/reporters/progress.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/progress.spec.js
--------------------------------------------------------------------------------
/test/reporters/spec.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/spec.spec.js
--------------------------------------------------------------------------------
/test/reporters/tap.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/tap.spec.js
--------------------------------------------------------------------------------
/test/reporters/xunit.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/reporters/xunit.spec.js
--------------------------------------------------------------------------------
/test/require/a.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/require/a.js
--------------------------------------------------------------------------------
/test/require/b.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/require/b.coffee
--------------------------------------------------------------------------------
/test/require/c.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/require/c.js
--------------------------------------------------------------------------------
/test/require/d.coffee:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/require/d.coffee
--------------------------------------------------------------------------------
/test/require/require.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/require/require.spec.js
--------------------------------------------------------------------------------
/test/setup.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/setup.js
--------------------------------------------------------------------------------
/test/smoke/smoke.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/smoke/smoke.spec.js
--------------------------------------------------------------------------------
/test/unit/context.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/context.spec.js
--------------------------------------------------------------------------------
/test/unit/duration.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/duration.spec.js
--------------------------------------------------------------------------------
/test/unit/errors.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/errors.spec.js
--------------------------------------------------------------------------------
/test/unit/globals.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/globals.spec.js
--------------------------------------------------------------------------------
/test/unit/grep.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/grep.spec.js
--------------------------------------------------------------------------------
/test/unit/hook-async.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/hook-async.spec.js
--------------------------------------------------------------------------------
/test/unit/hook-sync-nested.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/hook-sync-nested.spec.js
--------------------------------------------------------------------------------
/test/unit/hook-sync.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/hook-sync.spec.js
--------------------------------------------------------------------------------
/test/unit/hook-timeout.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/hook-timeout.spec.js
--------------------------------------------------------------------------------
/test/unit/hook.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/hook.spec.js
--------------------------------------------------------------------------------
/test/unit/mocha.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/mocha.spec.js
--------------------------------------------------------------------------------
/test/unit/overspecified-async.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/overspecified-async.spec.js
--------------------------------------------------------------------------------
/test/unit/parse-query.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/parse-query.spec.js
--------------------------------------------------------------------------------
/test/unit/plugin-loader.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/plugin-loader.spec.js
--------------------------------------------------------------------------------
/test/unit/required-tokens.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/required-tokens.spec.js
--------------------------------------------------------------------------------
/test/unit/root.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/root.spec.js
--------------------------------------------------------------------------------
/test/unit/runnable.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/runnable.spec.js
--------------------------------------------------------------------------------
/test/unit/runner.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/runner.spec.js
--------------------------------------------------------------------------------
/test/unit/suite.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/suite.spec.js
--------------------------------------------------------------------------------
/test/unit/test.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/test.spec.js
--------------------------------------------------------------------------------
/test/unit/throw.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/throw.spec.js
--------------------------------------------------------------------------------
/test/unit/timeout.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/timeout.spec.js
--------------------------------------------------------------------------------
/test/unit/utils.spec.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/test/unit/utils.spec.js
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mochajs/mocha/HEAD/tsconfig.json
--------------------------------------------------------------------------------