improvement: Support numbers with commas in them (#2636)

This commit is contained in:
Christopher Chedeau
2020-12-20 04:08:22 -08:00
committed by GitHub
parent f14ae52e94
commit eb9e67e36a
5 changed files with 63 additions and 23 deletions

View File

@ -0,0 +1,20 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`tryParseSpreadsheet works for numbers with comma in them 1`] = `
Object {
"spreadsheet": Object {
"labels": Array [
"Week 1",
"Week 2",
"Week 3",
],
"title": "Users",
"values": Array [
814,
10301,
4264,
],
},
"type": "VALID_SPREADSHEET",
}
`;