Skip to content

Commit

Permalink
[meta] fix repo URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Sep 18, 2022
1 parent 20ea48d commit 85d86a4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -72,9 +72,9 @@
},
"repository": {
"type": "git",
"url": "git://github.com/substack/tape.git"
"url": "git://github.com/ljharb/tape.git"
},
"homepage": "https://github.com/substack/tape",
"homepage": "https://github.com/ljharb/tape",
"keywords": [
"tap",
"test",
Expand All @@ -83,9 +83,9 @@
"browser"
],
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
"name": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes"
},
"license": "MIT"
}
28 changes: 14 additions & 14 deletions readme.markdown
Expand Up @@ -98,7 +98,7 @@ If you want a more colorful / pretty output there are lots of modules on npm tha

- [tap-spec](https://github.com/scottcorgan/tap-spec)
- [tap-dot](https://github.com/scottcorgan/tap-dot)
- [faucet](https://github.com/substack/faucet)
- [faucet](https://github.com/ljharb/faucet)
- [tap-bail](https://github.com/juliangruber/tap-bail)
- [tap-browser-color](https://github.com/kirbysayshi/tap-browser-color)
- [tap-json](https://github.com/gummesson/tap-json)
Expand Down Expand Up @@ -277,27 +277,27 @@ Aliases: `t.notEquals()`, `t.notStrictEqual()`, `t.notStrictEquals()`,

## t.deepEqual(actual, expected, msg)

Assert that `actual` and `expected` have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.
Assert that `actual` and `expected` have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/inspect-js/node-deep-equal) with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.

Aliases: `t.deepEquals()`, `t.isEquivalent()`, `t.same()`

## t.notDeepEqual(actual, expected, msg)

Assert that `actual` and `expected` do not have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.
Assert that `actual` and `expected` do not have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/inspect-js/node-deep-equal) with strict comparisons (`===`) on leaf nodes and an optional description of the assertion `msg`.

Aliases: `t.notDeepEquals`, `t.notEquivalent()`, `t.notDeeply()`, `t.notSame()`,
`t.isNotDeepEqual()`, `t.isNotDeeply()`, `t.isNotEquivalent()`,
`t.isInequivalent()`

## t.deepLooseEqual(actual, expected, msg)

Assert that `actual` and `expected` have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.
Assert that `actual` and `expected` have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/inspect-js/node-deep-equal) with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.

Aliases: `t.looseEqual()`, `t.looseEquals()`

## t.notDeepLooseEqual(actual, expected, msg)

Assert that `actual` and `expected` do not have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/substack/node-deep-equal) with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.
Assert that `actual` and `expected` do not have the same structure and nested values using [node's deepEqual() algorithm](https://github.com/inspect-js/node-deep-equal) with loose comparisons (`==`) on leaf nodes and an optional description of the assertion `msg`.

Aliases: `t.notLooseEqual()`, `t.notLooseEquals()`

Expand Down Expand Up @@ -557,17 +557,17 @@ test('third', function (t) {
MIT

[package-url]: https://npmjs.org/package/tape
[npm-version-svg]: https://versionbadg.es/substack/tape.svg
[deps-svg]: https://david-dm.org/substack/tape.svg
[deps-url]: https://david-dm.org/substack/tape
[dev-deps-svg]: https://david-dm.org/substack/tape/dev-status.svg
[dev-deps-url]: https://david-dm.org/substack/tape#info=devDependencies
[npm-version-svg]: https://versionbadg.es/ljharb/tape.svg
[deps-svg]: https://david-dm.org/ljharb/tape.svg
[deps-url]: https://david-dm.org/ljharb/tape
[dev-deps-svg]: https://david-dm.org/ljharb/tape/dev-status.svg
[dev-deps-url]: https://david-dm.org/ljharb/tape#info=devDependencies
[npm-badge-png]: https://nodei.co/npm/tape.png?downloads=true&stars=true
[license-image]: https://img.shields.io/npm/l/tape.svg
[license-url]: LICENSE
[downloads-image]: https://img.shields.io/npm/dm/tape.svg
[downloads-url]: https://npm-stat.com/charts.html?package=tape
[codecov-image]: https://codecov.io/gh/substack/tape/branch/master/graphs/badge.svg
[codecov-url]: https://app.codecov.io/gh/substack/tape/
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/substack/tape
[actions-url]: https://github.com/substack/tape/actions
[codecov-image]: https://codecov.io/gh/ljharb/tape/branch/master/graphs/badge.svg
[codecov-url]: https://app.codecov.io/gh/ljharb/tape/
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/tape
[actions-url]: https://github.com/ljharb/tape/actions

0 comments on commit 85d86a4

Please sign in to comment.