Skip to content

Commit 31c8e9f

Browse files
committed
Fixed table.test.ts
1 parent 60f731c commit 31c8e9f

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

test/unit/table.test.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
const table = require('../../src/table')
1+
const renderTableViewPane = require('../../src/table')
22

33
describe('renderTableViewPane', () => {
44
it('exists', () => {
5-
expect(table.renderTableViewPane).toBeInstanceOf(Function)
5+
expect(renderTableViewPane).toBeInstanceOf(Function)
66
})
7+
/*
8+
it('runs', () => {
9+
const doc = null
10+
const options = {}
11+
expect(renderTableViewPane(doc, options))
12+
}) */
713
})

0 commit comments

Comments
 (0)