fix(Google Sheets Node): Incorrect read of 0 and false (#6525)

This commit is contained in:
Michael Kret
2023-06-23 14:24:31 +03:00
committed by कारतोफ्फेलस्क्रिप्ट™
parent d3d8522e8f
commit b6202b5585
2 changed files with 7 additions and 3 deletions

View File

@@ -163,7 +163,7 @@ describe('Test Google Sheets, removeEmptyColumns', () => {
expect(result).toBeDefined();
expect(result).toEqual([
['id', 'col1', 'col3'],
['', 'A', 'C'], // TODO:should be [0, 'A', 'C'] ?
[0, 'A', 'C'],
[1, 'a', 'c'],
[2, 'd', 'f'],
[3, 'g', 'i'],