Skip to content

Commit

Permalink
Build: Update repo references
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle committed Aug 29, 2024
1 parent d4ddc42 commit 14c382b
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright JS Reporters <https://github.com/js-reporters/>
Copyright JS Reporters <https://github.com/qunitjs/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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/adapters/MochaAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion lib/adapters/QUnitAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/js-reporters/js-reporters/pull/60>
* See <https://github.com/qunitjs/js-reporters/pull/60>
*/
module.exports = class QUnitAdapter extends EventEmitter {
constructor (QUnit) {
Expand Down
2 changes: 1 addition & 1 deletion lib/reporters/ConsoleReporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down
2 changes: 1 addition & 1 deletion lib/reporters/TapReporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
8 changes: 4 additions & 4 deletions spec/cri-draft.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -90,7 +90,7 @@ These are the events that a <<producer>> should emit from its <<producer-api>>,
=====
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.
=====
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 14c382b

Please sign in to comment.