Skip to content

Commit a57c5c9

Browse files
authored
fix(docs): updated README of express-mongoose
fix(docs): updated README of express-mongoose
2 parents 1d42c3a + 52179f1 commit a57c5c9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

express-mongoose/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ npm install
1313

1414
# Using Keploy :
1515

16-
There are two ways to use Keploy:-
16+
There are two ways to use Keploy:-
1717

1818
1. [Natively on Linux/WSL](#natively-on-ubuntuwsl)
1919
2. [Using Docker](#running-sample-app-using-docker)
@@ -30,7 +30,7 @@ curl --silent --location "https://github.com/keploy/keploy/releases/latest/downl
3030
sudo mkdir -p /usr/local/bin && sudo mv /tmp/keploy /usr/local/bin && keploy
3131
```
3232

33-
<details>
33+
<details>
3434
<Summary> 2. ARM Architecture </Summary>
3535

3636

@@ -61,18 +61,18 @@ sudo mkdir -p /usr/local/bin && sudo mv /tmp/keploy /usr/local/bin && keploy
6161
docker-compose up -d
6262
```
6363

64-
> **Since we have setup our sample-app natively, we need to update the mongoDB host on line 41, in `db/connection.js`, from `mongodb://mongoDb:27017/keploy` to `mongodb://127.0.0.1:27017/keploy`.**
64+
> **Since we have setup our sample-app natively, we need to update the mongoDB host on line 41, in `db/connection.js`, from `mongodb://mongoDb:27017/Students` to `mongodb://127.0.0.1:27017/keploy`.**
6565
6666
### Capture the testcases
6767

6868
```bash
69-
sudo -E env PATH=$PATH Keploy record -c 'npm run src/app.js'
69+
sudo -E env PATH=$PATH keploy record -c 'node src/app.js'
7070
```
7171

7272
#### Let's generate the testcases.
7373
Make API Calls using [Hoppscotch](https://hoppscotch.io), [Postman](https://postman.com) or cURL command. Keploy with capture those calls to generate the test-suites containing testcases and data mocks.
7474

75-
```bash
75+
```bash
7676
curl --request POST \
7777
--url http://localhost:8000/students \
7878
--header 'content-type: application/json' \
@@ -148,7 +148,7 @@ keploy record -c "docker run -p 8000:8000 --name nodeMongoApp --network keploy-n
148148
#### Let's generate the testcases.
149149
Make API Calls using [Hoppscotch](https://hoppscotch.io), [Postman](https://postman.com) or cURL command. Keploy with capture those calls to generate the test-suites containing testcases and data mocks.
150150

151-
```bash
151+
```bash
152152
curl --request POST \
153153
--url http://localhost:8000/students \
154154
--header 'content-type: application/json' \

0 commit comments

Comments
 (0)