Skip to content

Commit

Permalink
fix: typo in test function names
Browse files Browse the repository at this point in the history
  • Loading branch information
gamemaker1 committed Mar 6, 2021
1 parent d7aaebe commit 1374f67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@ test('test parsing for docx files', async (t) => {
})

test('test parsing for pptx files', async (t) => {
t.true(await testDocx())
t.true(await testPptx())
})

test('test parsing for xlsx files', async (t) => {
t.true(await testDocx())
t.true(await testXlsx())
})

test('test parsing for pdf files', async (t) => {
t.true(await testDocx())
t.true(await testPdf())
})

test('test parsing for files with unknown mime', async (t) => {
Expand Down

0 comments on commit 1374f67

Please sign in to comment.