Skip to content

Commit

Permalink
fix: basic marketplace test
Browse files Browse the repository at this point in the history
Fix basic test for merketplace
  • Loading branch information
kyzia551 committed Feb 12, 2019
1 parent 683ff67 commit e49edda
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/ethlend-js.test.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import LoanRequest from '../src/ethlend-js'
import { Marketplace } from '../src/ethlend-js'

/**
* Dummy test
*/
describe('LoanRequest test', () => {
describe('Marketplace test', () => {
it('works if true is truthy', () => {
expect(true).toBeTruthy()
})

it('LoanRequest is instantiable', () => {
expect(new LoanRequest({}, 'token')).toBeInstanceOf(LoanRequest)
expect(new Marketplace('token')).toBeInstanceOf(Marketplace)
})
})

0 comments on commit e49edda

Please sign in to comment.