├── .eslintrc.json ├── .gitattributes ├── .github └── workflows │ ├── CI.yaml │ └── browsers.yaml ├── .gitignore ├── .mailmap ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASE.md ├── SECURITY.md ├── authors.js ├── docs ├── example.md └── frameworks.md ├── img ├── situation-expected.png └── situation-now.png ├── index.js ├── karma.conf.js ├── karma.conf.sauce.js ├── lib ├── adapters │ ├── JasmineAdapter.js │ ├── MochaAdapter.js │ └── QUnitAdapter.js ├── auto.js ├── helpers.js └── reporters │ ├── ConsoleReporter.js │ ├── SummaryReporter.js │ └── TapReporter.js ├── package.json ├── rollup.config.js ├── spec └── cri-draft.adoc └── test ├── fixtures ├── integration │ ├── jasmine.js │ ├── mocha.js │ ├── qunit-todo.js │ └── qunit.js └── unit.js ├── integration ├── adapters-run.js ├── adapters.js ├── reference-data-todo.js └── reference-data.js ├── unit ├── console-reporter.js ├── helpers.js ├── summary-reporter.js └── tap-reporter.js └── versions ├── failing-versions.js ├── versions-reporting.js └── versions.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | package-lock.json binary 2 | -------------------------------------------------------------------------------- /.github/workflows/CI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/.github/workflows/CI.yaml -------------------------------------------------------------------------------- /.github/workflows/browsers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/.github/workflows/browsers.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/.mailmap -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/SECURITY.md -------------------------------------------------------------------------------- /authors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/authors.js -------------------------------------------------------------------------------- /docs/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/docs/example.md -------------------------------------------------------------------------------- /docs/frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/docs/frameworks.md -------------------------------------------------------------------------------- /img/situation-expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/img/situation-expected.png -------------------------------------------------------------------------------- /img/situation-now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/img/situation-now.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/index.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/karma.conf.js -------------------------------------------------------------------------------- /karma.conf.sauce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/karma.conf.sauce.js -------------------------------------------------------------------------------- /lib/adapters/JasmineAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/lib/adapters/JasmineAdapter.js -------------------------------------------------------------------------------- /lib/adapters/MochaAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/lib/adapters/MochaAdapter.js -------------------------------------------------------------------------------- /lib/adapters/QUnitAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/lib/adapters/QUnitAdapter.js -------------------------------------------------------------------------------- /lib/auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/lib/auto.js -------------------------------------------------------------------------------- /lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/lib/helpers.js -------------------------------------------------------------------------------- /lib/reporters/ConsoleReporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/lib/reporters/ConsoleReporter.js -------------------------------------------------------------------------------- /lib/reporters/SummaryReporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/lib/reporters/SummaryReporter.js -------------------------------------------------------------------------------- /lib/reporters/TapReporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/lib/reporters/TapReporter.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/rollup.config.js -------------------------------------------------------------------------------- /spec/cri-draft.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/spec/cri-draft.adoc -------------------------------------------------------------------------------- /test/fixtures/integration/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/fixtures/integration/jasmine.js -------------------------------------------------------------------------------- /test/fixtures/integration/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/fixtures/integration/mocha.js -------------------------------------------------------------------------------- /test/fixtures/integration/qunit-todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/fixtures/integration/qunit-todo.js -------------------------------------------------------------------------------- /test/fixtures/integration/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/fixtures/integration/qunit.js -------------------------------------------------------------------------------- /test/fixtures/unit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/fixtures/unit.js -------------------------------------------------------------------------------- /test/integration/adapters-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/integration/adapters-run.js -------------------------------------------------------------------------------- /test/integration/adapters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/integration/adapters.js -------------------------------------------------------------------------------- /test/integration/reference-data-todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/integration/reference-data-todo.js -------------------------------------------------------------------------------- /test/integration/reference-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/integration/reference-data.js -------------------------------------------------------------------------------- /test/unit/console-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/unit/console-reporter.js -------------------------------------------------------------------------------- /test/unit/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/unit/helpers.js -------------------------------------------------------------------------------- /test/unit/summary-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/unit/summary-reporter.js -------------------------------------------------------------------------------- /test/unit/tap-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/unit/tap-reporter.js -------------------------------------------------------------------------------- /test/versions/failing-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/versions/failing-versions.js -------------------------------------------------------------------------------- /test/versions/versions-reporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/versions/versions-reporting.js -------------------------------------------------------------------------------- /test/versions/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qunitjs/js-reporters/HEAD/test/versions/versions.js --------------------------------------------------------------------------------