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

13
src/tests/charts.test.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { tryParseSpreadsheet } from "../charts";
describe("tryParseSpreadsheet", () => {
it("works for numbers with comma in them", () => {
const result = tryParseSpreadsheet(
`Week Index${"\t"}Users
Week 1${"\t"}814
Week 2${"\t"}10,301
Week 3${"\t"}4,264`,
);
expect(result).toMatchSnapshot();
});
});