mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-13 06:23:00 +08:00
Update LinkedList.test.js
Remove only alias
This commit is contained in:
parent
9caf9ebaaa
commit
e0de4bb37e
@ -193,7 +193,7 @@ describe('LinkedList', () => {
|
|||||||
expect(linkedList.toString()).toBe('1,1,2,3,3,3,4,5');
|
expect(linkedList.toString()).toBe('1,1,2,3,3,3,4,5');
|
||||||
});
|
});
|
||||||
|
|
||||||
it.only('should return a linked list node array', () => {
|
it('should return a linked list node array', () => {
|
||||||
const linkedList = new LinkedList();
|
const linkedList = new LinkedList();
|
||||||
|
|
||||||
expect(linkedList.head).toBeNull();
|
expect(linkedList.head).toBeNull();
|
||||||
|
Loading…
Reference in New Issue
Block a user