Skip to content

Commit

Permalink
fix: Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Ginnivan committed Jan 2, 2019
1 parent 8b3a3f1 commit c7e5b48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
include:
- stage: release
node_js: lts/*
script: skip
deploy:
provider: script
skip_cleanup: true
Expand Down
4 changes: 2 additions & 2 deletions src/mock-query-executor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const tables = {
}

it('can mock query', async () => {
const queryExecutor = new MockQueryExecutor(tables)
const queryExecutor = new MockQueryExecutor()
const exampleQuery = queryExecutor.createQuery<{}, number[]>(async ({}) => {
throw new Error('Should not be called')
})
Expand All @@ -22,7 +22,7 @@ it('can mock query', async () => {
})

it('can match specific query args', async () => {
const queryExecutor = new MockQueryExecutor(tables)
const queryExecutor = new MockQueryExecutor()
const exampleQuery = queryExecutor.createQuery<{ param: string }, number>(
async ({}) => {
throw new Error('Should not be called')
Expand Down

0 comments on commit c7e5b48

Please sign in to comment.