(actual: number[], expected: number[])
| 110 | } |
| 111 | |
| 112 | function expectVectorClose(actual: number[], expected: number[]): void { |
| 113 | expect(actual).toHaveLength(expected.length); |
| 114 | expected.forEach((value, index) => { |
| 115 | expect(actual[index]).toBeCloseTo(value); |
| 116 | }); |
| 117 | } |
no outgoing calls
no test coverage detected