()
| 627 | describe("non-mutating array methods", () => { |
| 628 | // Test data factory |
| 629 | const createTestData = () => ({ |
| 630 | items: [ |
| 631 | {id: 1, value: 10, nested: {count: 1}}, |
| 632 | {id: 2, value: 20, nested: {count: 2}}, |
| 633 | {id: 3, value: 30, nested: {count: 3}}, |
| 634 | {id: 4, value: 40, nested: {count: 4}}, |
| 635 | {id: 5, value: 50, nested: {count: 5}} |
| 636 | ], |
| 637 | other: {data: "test"} |
| 638 | }) |
| 639 | |
| 640 | describe("filter()", () => { |
| 641 | test("returns new array with filtered items", () => { |
no outgoing calls
no test coverage detected
searching dependent graphs…