| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`processTableData basic processing should generate a header and fix widths 1`] = `
- Object {
- "columnMap": Object {},
- "columns": Array [
- Object {
- "text": "Column 1",
- },
- Object {
- "text": "Column 2",
- },
- Object {
- "text": "Column 3",
- },
- ],
- "rows": Array [
- Array [
- 1,
- null,
- null,
- ],
- Array [
- 2,
- 3,
- 4,
- ],
- Array [
- 5,
- 6,
- null,
- ],
- ],
- "type": "table",
- }
- `;
- exports[`processTableData basic processing should read header and two rows 1`] = `
- Object {
- "columnMap": Object {},
- "columns": Array [
- Object {
- "text": "a",
- },
- Object {
- "text": "b",
- },
- Object {
- "text": "c",
- },
- ],
- "rows": Array [
- Array [
- 1,
- 2,
- 3,
- ],
- Array [
- 4,
- 5,
- 6,
- ],
- ],
- "type": "table",
- }
- `;
|