diff --git a/LICENSE b/LICENSE index 3ec0097..bc41855 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright JS Reporters +Copyright JS Reporters Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index dde3d56..c3c35b5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # js-reporters [![Chat on Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/js-reporters/js-reporters) -[![Build status](https://github.com/js-reporters/js-reporters/actions/workflows/CI.yaml/badge.svg)](https://github.com/js-reporters/js-reporters/actions/workflows/CI.yaml) +[![Build status](https://github.com/qunitjs/js-reporters/actions/workflows/CI.yaml/badge.svg)](https://github.com/qunitjs/js-reporters/actions/workflows/CI.yaml) [![](https://img.shields.io/npm/dm/js-reporters.svg)](https://www.npmjs.com/package/js-reporters) [![npm package](https://img.shields.io/npm/v/js-reporters.svg)](https://www.npmjs.com/package/js-reporters) @@ -41,7 +41,7 @@ Our mission is to deliver: Would _you_ be interested in discussing this with us further? Please join in! * [Join the Chat room](https://gitter.im/js-reporters/js-reporters) -* [Browse open issues](https://github.com/js-reporters/js-reporters/issues/) +* [Browse open issues](https://github.com/qunitjs/js-reporters/issues/) * [Help frameworks and runners implement the spec](#cross-project-coordination) ## js-reporters Package diff --git a/lib/adapters/MochaAdapter.js b/lib/adapters/MochaAdapter.js index b1e254e..72147bc 100644 --- a/lib/adapters/MochaAdapter.js +++ b/lib/adapters/MochaAdapter.js @@ -75,7 +75,7 @@ module.exports = class MochaAdapter extends EventEmitter { stack: error.stack })); // Mocha 8.0 introduced STATE_PENDING - // https://github.com/js-reporters/js-reporters/issues/116 + // https://github.com/qunitjs/js-reporters/issues/116 const status = (mochaTest.state === undefined || mochaTest.state === 'pending') ? 'skipped' : mochaTest.state; const runtime = (mochaTest.duration === undefined) ? null : mochaTest.duration; diff --git a/lib/adapters/QUnitAdapter.js b/lib/adapters/QUnitAdapter.js index 7b95d67..03e54f3 100644 --- a/lib/adapters/QUnitAdapter.js +++ b/lib/adapters/QUnitAdapter.js @@ -6,7 +6,7 @@ const helpers = require('../helpers.js'); * * - Due to ordering issues with nested modules on QUnit < 2.2, this adapter * buffers events and only emits them after the run has completed. - * See + * See */ module.exports = class QUnitAdapter extends EventEmitter { constructor (QUnit) { diff --git a/lib/reporters/ConsoleReporter.js b/lib/reporters/ConsoleReporter.js index c6dfd68..c051788 100644 --- a/lib/reporters/ConsoleReporter.js +++ b/lib/reporters/ConsoleReporter.js @@ -2,7 +2,7 @@ module.exports = class ConsoleReporter { constructor (runner, options = {}) { // Cache references to console methods to ensure we can report failures // from tests tests that mock the console object itself. - // https://github.com/js-reporters/js-reporters/issues/125 + // https://github.com/qunitjs/js-reporters/issues/125 this.log = options.log || console.log.bind(console); runner.on('runStart', this.onRunStart.bind(this)); diff --git a/lib/reporters/TapReporter.js b/lib/reporters/TapReporter.js index 33f74bb..59cb441 100644 --- a/lib/reporters/TapReporter.js +++ b/lib/reporters/TapReporter.js @@ -164,7 +164,7 @@ module.exports = class TapReporter { constructor (runner, options = {}) { // Cache references to console methods to ensure we can report failures // from tests tests that mock the console object itself. - // https://github.com/js-reporters/js-reporters/issues/125 + // https://github.com/qunitjs/js-reporters/issues/125 this.log = options.log || console.log.bind(console); this.testCount = 0; diff --git a/package.json b/package.json index db37206..a04458a 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://github.com/js-reporters/js-reporters.git" + "url": "https://github.com/qunitjs/js-reporters.git" }, "engines": { "node": ">=10" diff --git a/rollup.config.js b/rollup.config.js index e2b47cb..995cab5 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -13,7 +13,7 @@ module.exports = { format: 'umd', name: 'JsReporters', exports: 'auto', - banner: `/*! JsReporters ${version} | Copyright JS Reporters https://github.com/js-reporters/ | https://opensource.org/licenses/MIT */` + banner: `/*! JsReporters ${version} | Copyright JS Reporters https://github.com/qunitjs/js-reporters/ | https://opensource.org/licenses/MIT */` }, plugins: [ // For 'events' and 'kleur' diff --git a/spec/cri-draft.adoc b/spec/cri-draft.adoc index 1e44007..acb5fdb 100644 --- a/spec/cri-draft.adoc +++ b/spec/cri-draft.adoc @@ -79,7 +79,7 @@ Reporter:: [TIP] ===== -The use of "Suite" and "Test" as the main two data structues was decided in https://github.com/js-reporters/js-reporters/issues/12[issue #12], and later revised in https://github.com/js-reporters/js-reporters/issues/126[issue #126]. +The use of "Suite" and "Test" as the main two data structues was decided in https://github.com/qunitjs/js-reporters/issues/12[issue #12], and later revised in https://github.com/qunitjs/js-reporters/issues/126[issue #126]. ===== == Events @@ -90,7 +90,7 @@ These are the events that a <> should emit from its <>, ===== These events were selected as: -- common across known testing frameworks (gathered in https://github.com/js-reporters/js-reporters/issues/1#issuecomment-54841874[issue #1]). +- common across known testing frameworks (gathered in https://github.com/qunitjs/js-reporters/issues/1#issuecomment-54841874[issue #1]). - valid JavaScript identifiers, allowing use as variable name and as object literal key without quotes. - not overlapping with existing events in known testing frameworks, for easy adoption within existing APIs. ===== @@ -103,7 +103,7 @@ Note that execution order may be different from reporting order. If a testing fr [TIP] ===== -Read https://github.com/js-reporters/js-reporters/issues/62[issue #62] for the discussion about reporting order. +Read https://github.com/qunitjs/js-reporters/issues/62[issue #62] for the discussion about reporting order. ===== === `runStart` event @@ -283,7 +283,7 @@ Producers may set additional (non-standard) properties on `Assertion` objects. [TIP] ===== -The properties of the Assertion object was decided in https://github.com/js-reporters/js-reporters/issues/79[issue #79], and later revised by https://github.com/js-reporters/js-reporters/issues/105[issue #105]. +The properties of the Assertion object was decided in https://github.com/qunitjs/js-reporters/issues/79[issue #79], and later revised by https://github.com/qunitjs/js-reporters/issues/105[issue #105]. ===== == Producer API