Skip to content

Commit

Permalink
fix: plugin name
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip Hric committed Feb 14, 2023
1 parent ef2a41b commit 86cdedf
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .versionrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{"type": "perf", "hidden": true},
{"type": "test", "hidden": true}
],
"commitUrlFormat": "https://github.com/filiphric/cypress-steps/commits/{{hash}}",
"compareUrlFormat": "https://github.com/filiphric/cypress-steps/compare/{{previousTag}}...{{currentTag}}"
"commitUrlFormat": "https://github.com/filiphric/cypress-plugin-steps/commits/{{hash}}",
"compareUrlFormat": "https://github.com/filiphric/cypress-plugin-steps/compare/{{previousTag}}...{{currentTag}}"
}

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ A small Cypress helper that adds your test steps to the timeline and error logs.

Install this package:
```bash
npm i cypress-steps
npm i cypress-plugin-steps
# or
yarn add cypress-steps
yarn add cypress-plugin-steps
```

Import the plugin into your `cypress/support/e2e.js` file:
```js
import 'cypress-steps'
import 'cypress-plugin-steps'
// or
require('cypress-steps')
require('cypress-plugin-steps')
```

### Usage
Expand Down Expand Up @@ -75,7 +75,7 @@ You can find and replace all your `cy.log()` commands by matching the word `log`
Or alternatively, you can overwrite your existing `cy.log()` command:

```js
import { step } from 'cypress-steps'
import { step } from 'cypress-plugin-steps'
Cypress.Commands.overwrite('log', step)
```

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Filip Hric (https://filiphric.com/)",
"license": "ISC",
"name": "cypress-steps",
"name": "cypress-plugin-steps",
"version": "0.0.0-development",
"description": "Add steps to your tests",
"main": "dist/support.js",
Expand Down Expand Up @@ -59,10 +59,10 @@
},
"repository": {
"type": "git",
"url": "https://github.com/filiphric/cypress-steps.git"
"url": "https://github.com/filiphric/cypress-plugin-steps.git"
},
"bugs": {
"url": "https://github.com/filiphric/cypress-steps/issues"
"url": "https://github.com/filiphric/cypress-plugin-steps/issues"
},
"homepage": "https://github.com/filiphric/cypress-steps#readme"
"homepage": "https://github.com/filiphric/cypress-plugin-steps#readme"
}

0 comments on commit 86cdedf

Please sign in to comment.