Update README.

This commit is contained in:
Oleksii Trekhleb 2018-03-27 14:43:15 +03:00
parent ad0921d05e
commit 335e751f32

View File

@ -1,5 +1,18 @@
# Data Structures
# JavaScript Algorithms and Data Structures
### Running Tests
**Run all tests**
```
npm run babel-node --silent ./src/linked_list
npm test
```
**Run tests by name**
```
npm test -- -t 'LinkedList'
```
**Run tests from specific file**
```
npm test -- ./src/data-structures/linked-list/__test__/LinkedList.test.js
```