Skip to content
This repository was archived by the owner on Mar 29, 2023. It is now read-only.

Commit e5a61ca

Browse files
committed
fix: remove bahmutov organization name
1 parent 8ef02c7 commit e5a61ca

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ yarn add -D cypress-grep
3737
```js
3838
// cypress/support/index.js
3939
// load and register the grep feature
40-
// https://github.com/bahmutov/cypress-grep
40+
// https://github.com/cypress-io/cypress-grep
4141
require('cypress-grep')()
4242
```
4343

@@ -49,7 +49,7 @@ require('cypress-grep')()
4949
// cypress/plugins/index.js
5050
module.exports = (on, config) => {
5151
// optional: register cypress-grep plugin code
52-
// https://github.com/bahmutov/cypress-grep
52+
// https://github.com/cypress-io/cypress-grep
5353
require('cypress-grep/src/plugin')(config)
5454
// make sure to return the config object
5555
// as it might have been modified by the plugin
@@ -92,7 +92,7 @@ $ npx cypress run --env grepUntagged=true
9292

9393
## Videos
9494

95-
Watch the video [intro to cypress-grep](https://www.youtube.com/watch?v=HS-Px-Sghd8) which shows how this repository tags tests, uses [cypress-grep](https://github.com/bahmutov/cypress-grep) plugin, and sets up the TypeScript intelligent code completion.
95+
Watch the video [intro to cypress-grep](https://www.youtube.com/watch?v=HS-Px-Sghd8) which shows how this repository tags tests, uses [cypress-grep](https://github.com/cypress-io/cypress-grep) plugin, and sets up the TypeScript intelligent code completion.
9696

9797
You can also watch [How I organize pull request workflows](https://youtu.be/SFW7Ecj5TNE) where I show how the GitHub workflows in [.github/workflows](./.github/workflows) are organized to run the smoke tests first on pull request.
9898

@@ -459,7 +459,7 @@ Author: Gleb Bahmutov <[email protected]> © 2021
459459
License: MIT - do anything with the code, but don't blame me if it does not work.
460460

461461
Support: if you find any problems with this module, email / tweet /
462-
[open issue](https://github.com/bahmutov/cypress-grep/issues) on Github
462+
[open issue](https://github.com/cypress-io/cypress-grep/issues) on Github
463463

464464
## MIT License
465465

@@ -486,9 +486,9 @@ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
486486
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
487487
OTHER DEALINGS IN THE SOFTWARE.
488488

489-
[ci image]: https://github.com/bahmutov/cypress-grep/workflows/ci/badge.svg?branch=main
490-
[ci url]: https://github.com/bahmutov/cypress-grep/actions
491-
[badges image]: https://github.com/bahmutov/cypress-grep/workflows/badges/badge.svg?branch=main
492-
[badges url]: https://github.com/bahmutov/cypress-grep/actions
489+
[ci image]: https://github.com/cypress-io/cypress-grep/workflows/ci/badge.svg?branch=main
490+
[ci url]: https://github.com/cypress-io/cypress-grep/actions
491+
[badges image]: https://github.com/cypress-io/cypress-grep/workflows/badges/badge.svg?branch=main
492+
[badges url]: https://github.com/cypress-io/cypress-grep/actions
493493
[renovate-badge]: https://img.shields.io/badge/renovate-app-blue.svg
494494
[renovate-app]: https://renovateapp.com/

cypress/plugins/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = (on, config) => {
99
// `config` is the resolved Cypress config
1010

1111
// optional: register cypress-grep plugin code
12-
// https://github.com/bahmutov/cypress-grep
12+
// https://github.com/cypress-io/cypress-grep
1313
require('../../src/plugin')(config)
1414
// remember to return the config
1515
// because it might be changed by the plugin

cypress/support/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44
import cypressGrep from '../..'
55
// register the grep feature
6-
// https://github.com/bahmutov/cypress-grep
6+
// https://github.com/cypress-io/cypress-grep
77
cypressGrep()

expects/test-npm-module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// https://github.com/bahmutov/cypress-grep/issues/41
1+
// https://github.com/cypress-io/cypress-grep/issues/41
22
// shows how to pass grep parameters using Cypress NPM Module API
33
// https://on.cypress.io/module-api
44
const cypress = require('cypress')

src/support.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const _describe = describe
1111

1212
/**
1313
* Wraps the "it" and "describe" functions that support tags.
14-
* @see https://github.com/bahmutov/cypress-grep
14+
* @see https://github.com/cypress-io/cypress-grep
1515
*/
1616
function cypressGrep() {
1717
/** @type {string} Part of the test title go grep */
@@ -213,7 +213,7 @@ if (!Cypress.grep) {
213213
* // remove all current grep settings
214214
* // and run all tests
215215
* Cypress.grep()
216-
* @see "Grep from DevTools console" https://github.com/bahmutov/cypress-grep#devtools-console
216+
* @see "Grep from DevTools console" https://github.com/cypress-io/cypress-grep#devtools-console
217217
*/
218218
Cypress.grep = function grep(grep, tags, burn) {
219219
Cypress.env('grep', grep)

0 commit comments

Comments
 (0)