mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-13 06:23:00 +08:00
19 lines
274 B
Markdown
19 lines
274 B
Markdown
# JavaScript Algorithms and Data Structures
|
|
|
|
### Running Tests
|
|
|
|
**Run all tests**
|
|
```
|
|
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
|
|
```
|