We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 683ff67 commit e49eddaCopy full SHA for e49edda
test/ethlend-js.test.ts
@@ -1,14 +1,14 @@
1
-import LoanRequest from '../src/ethlend-js'
+import { Marketplace } from '../src/ethlend-js'
2
3
/**
4
* Dummy test
5
*/
6
-describe('LoanRequest test', () => {
+describe('Marketplace test', () => {
7
it('works if true is truthy', () => {
8
expect(true).toBeTruthy()
9
})
10
11
it('LoanRequest is instantiable', () => {
12
- expect(new LoanRequest({}, 'token')).toBeInstanceOf(LoanRequest)
+ expect(new Marketplace('token')).toBeInstanceOf(Marketplace)
13
14
0 commit comments