()
| 12 | name: |
| 13 | "Object array with no columns, should infer columns from the first array element", |
| 14 | fn() { |
| 15 | const data = [{ a: 1 }, { a: 2 }, { b: 3 }]; |
| 16 | const output = `a${CRLF}1${CRLF}2${CRLF}${CRLF}`; |
| 17 | assertEquals(stringify(data), output); |
| 18 | }, |
| 19 | }, |
| 20 | ); |
| 21 | await t.step( |
nothing calls this directly
no test coverage detected