Skip to content

Commit

Permalink
test: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Iiro Jäppinen authored and okonet committed Jun 6, 2019
1 parent ed9e586 commit cb5fcbd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/makeCmdTasks.spec.js
Expand Up @@ -9,7 +9,8 @@ describe('makeCmdTasks', () => {
})

it('should return an array', async () => {
expect(await makeCmdTasks('test', ['test.js'])).toBeInstanceOf(Array)
const array = await makeCmdTasks('test', gitDir, ['test.js'])
expect(array).toBeInstanceOf(Array)
})

it('should work with a single command', async () => {
Expand Down

0 comments on commit cb5fcbd

Please sign in to comment.