Skip to content

Commit

Permalink
update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
djgould committed Mar 27, 2024
1 parent 830dcf1 commit 4d3b927
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This Plugin leverages OpenAI to help give tips to debugging cypress tests when t
### Installation

```
npm install cypress-ai --save-dev
npm install @djgould/cypress-ai --save-dev
```

### Usage
Expand All @@ -14,7 +14,7 @@ npm install cypress-ai --save-dev

```js
import { defineConfig } from 'cypress'
import { createCypressAI } from './cypress-ai'
import { createCypressAI } from '@djgould/cypress-ai'

const cypressAI = createCypressAI({ apiKey: 'open ai api key' })

Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "cypress-ai",
"name": "@djgould/cypress-ai",
"version": "0.1.0",
"description": "Asks AI to help guide you on cypress test failures",
"type": "module",
Expand All @@ -21,7 +21,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/djgould/cypress-ai.git"
"url": "git+https://github.com/djgould/cypress-ai.git"
},
"keywords": [
"cypress",
Expand Down Expand Up @@ -60,5 +60,9 @@
"typescript": "5.4.3",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"directories": {
"doc": "docs",
"test": "test"
}
}

0 comments on commit 4d3b927

Please sign in to comment.