-
Notifications
You must be signed in to change notification settings - Fork 722
/
Copy pathdetectTableChildren.test.js
41 lines (37 loc) · 1.1 KB
/
detectTableChildren.test.js
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
const detectTables = require('../detectTables');
const detectHeaders = require('../handleTables');
const parsedMarkdownTree = require('../../../mocks/parsedMarkdownTree');
const markdownTables = detectTables(parsedMarkdownTree);
const [child] = markdownTables;
describe('testing detectTables function', () => {
test('is defined', () => {
expect(detectTables).toBeDefined();
});
test('length is matched', () => {
expect(markdownTables.length).toEqual(2);
});
test('has correct size of thead', () => {
expect(child.align.length).toBe(5);
})
test('is returned table', () => {
expect(child.type).toBe('table');
});
test('has row and cell children', () => {
const [rowChild] = child.children;
expect(rowChild.type).toBe('tableRow');
const [cellChild] = rowChild.children;
expect(cellChild.type).toBe('tableCell');
});
});
describe('testing detectHeaders function', () => {
let rowChild;
beforeAll(() => {
[rowChild] = child.children;
});
test('is defined', ()=>{
expect(detectHeaders).toBeDefined();
})
test('is defined', ()=>{
rowChild;
})
})