Skip to content

Commit

Permalink
docs(readme): Fix installation examples
Browse files Browse the repository at this point in the history
  • Loading branch information
javierbrea committed Nov 28, 2020
1 parent e739c4c commit 5e45697
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ Inside `cypress/plugins/index.js`:

```javascript
module.exports = (on, config) => {
require("cypress-fail-fast")(on, config);
require("cypress-fail-fast/plugin")(on, config);
return config;
};
```

At the top of `cypress/support/index.js`:

```javascript
require "cypress-fail-fast";
import "cypress-fail-fast";
```

## Usage
Expand Down

0 comments on commit 5e45697

Please sign in to comment.