fix(devDeps); fix(Iterator): get value - undefined

This commit is contained in:
2025-05-11 23:50:47 +03:00
parent c0fdb85a36
commit a25cf10084
5 changed files with 170 additions and 708 deletions

View File

@ -49,6 +49,7 @@ test('move, empty', () => {
test('constructor, assign', () => {
expect(new List().size()).toEqual(0)
expect(new List().back).toEqual(undefined)
expect(listEquArray(new List(null), [null])).toBeTruthy()
expect(listEquArray(new List(null, 2), [null, null])).toBeTruthy()
{