Skip to content

Commit e49edda

Browse files
committed
fix: basic marketplace test
Fix basic test for merketplace
1 parent 683ff67 commit e49edda

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/ethlend-js.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
import LoanRequest from '../src/ethlend-js'
1+
import { Marketplace } from '../src/ethlend-js'
22

33
/**
44
* Dummy test
55
*/
6-
describe('LoanRequest test', () => {
6+
describe('Marketplace test', () => {
77
it('works if true is truthy', () => {
88
expect(true).toBeTruthy()
99
})
1010

1111
it('LoanRequest is instantiable', () => {
12-
expect(new LoanRequest({}, 'token')).toBeInstanceOf(LoanRequest)
12+
expect(new Marketplace('token')).toBeInstanceOf(Marketplace)
1313
})
1414
})

0 commit comments

Comments
 (0)