mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-12-26 23:21:18 +08:00
23 lines
405 B
Markdown
23 lines
405 B
Markdown
# JavaScript Algorithms and Data Structures
|
|
|
|
## Data Structures
|
|
|
|
- [Linked List](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/linked-list)
|
|
|
|
## 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
|
|
```
|