Update LinkedList.test.js

Remove only alias
This commit is contained in:
JD Medina 2020-01-03 07:08:50 -05:00
parent 9caf9ebaaa
commit e0de4bb37e

View File

@ -193,7 +193,7 @@ describe('LinkedList', () => {
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();
expect(linkedList.head).toBeNull();