Skip to content

Commit

Permalink
🧪 Update snapshots with empty values on last column. #44
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoMouyna committed Apr 8, 2022
1 parent c28325c commit 6af1f7a
Showing 1 changed file with 37 additions and 2 deletions.
39 changes: 37 additions & 2 deletions tests/__snapshots__/xlsx-stream.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1345,8 +1345,9 @@ Array [
"column1",
"column2",
"column3",
"column4",
],
"processedSheetSize": 1246,
"processedSheetSize": 2343,
"raw": Object {
"arr": Array [
"hello",
Expand All @@ -1358,7 +1359,41 @@ Array [
"column3": 123.123,
},
},
"totalSheetSize": 1246,
"totalSheetSize": 2343,
},
Object {
"formatted": Object {
"arr": Array [
undefined,
"world",
undefined,
456,
],
"obj": Object {
"column2": "world",
"column4": 456,
},
},
"header": Array [
"column1",
"column2",
"column3",
"column4",
],
"processedSheetSize": 2343,
"raw": Object {
"arr": Array [
undefined,
"world",
undefined,
456,
],
"obj": Object {
"column2": "world",
"column4": 456,
},
},
"totalSheetSize": 2343,
},
]
`;
Expand Down

0 comments on commit 6af1f7a

Please sign in to comment.