Skip to content

Commit ab99a65

Browse files
authored
Remove toArray test
1 parent aba8600 commit ab99a65

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Data-Structures/Linked-List/test/CircularDoublyLinkedList.test.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,6 @@ describe('CircularDoublyLinkedList', () => {
4141
expect(list.toArray()).toEqual([40])
4242
})
4343

44-
it('toArray', () => {
45-
const list = createAndAppend([20])
46-
expect(list.toArray()).toEqual([20])
47-
})
48-
4944
it('elements', () => {
5045
const list = createAndAppend([10, 20, 30])
5146
expect([...list.elements()]).toEqual([10, 20, 30])

0 commit comments

Comments
 (0)