Skip to content

Commit 912941b

Browse files
committed
Add troubleshooting instructions.
1 parent 4ca41ea commit 912941b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ tree is being used.
236236
## How to use this repository
237237

238238
**Install all dependencies**
239+
239240
```
240241
npm install
241242
```
@@ -249,15 +250,26 @@ npm run lint
249250
```
250251

251252
**Run all tests**
253+
252254
```
253255
npm test
254256
```
255257

256258
**Run tests by name**
259+
257260
```
258261
npm test -- 'LinkedList'
259262
```
260263

264+
**Troubleshooting**
265+
266+
In case if linting or testing is failing try to delete the `node_modules` folder and re-install npm packages:
267+
268+
```
269+
rm -rf ./node_modules
270+
npm i
271+
```
272+
261273
**Playground**
262274

263275
You may play with data-structures and algorithms in `./src/playground/playground.js` file and write

0 commit comments

Comments
 (0)