-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathformatTable.test.ts
54 lines (51 loc) · 1.37 KB
/
formatTable.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import { formatTable } from './formatTable';
describe('#formatTable', () => {
it('should format table', () => {
const table = `
| Syntax | Description |
| --- | ----------- |
| Header | Title |
| Paragraph | Text |
`.trim();
const formattedTable = formatTable(table);
const expectedTable = `
| Syntax | Description |
| --------- | ----------- |
| Header | Title |
| Paragraph | Text |
`.trim();
expect(formattedTable).toBe(expectedTable);
});
it('should format table 2', () => {
const table = `
| Syntax | Description | Test Text |
| --- | --- | --- |
| Header | Title | Here's this |
| Paragraph | Text | And more |
`.trim();
const formattedTable = formatTable(table);
const expectedTable = `
| Syntax | Description | Test Text |
| --------- | ----------- | ----------- |
| Header | Title | Here's this |
| Paragraph | Text | And more |
`.trim();
expect(formattedTable).toBe(expectedTable);
});
it('should not format already-formatted table', () => {
const table = `
| Syntax | Description |
| --------- | ----------- |
| Header | Title |
| Paragraph | Text |
`.trim();
const formattedTable = formatTable(table);
const expectedTable = `
| Syntax | Description |
| --------- | ----------- |
| Header | Title |
| Paragraph | Text |
`.trim();
expect(formattedTable).toBe(expectedTable);
});
});