Skip to content

Commit

Permalink
Fixing test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattschoch committed Mar 26, 2024
1 parent 3c8d638 commit 7fb80ec
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Test, TestingModule } from '@nestjs/testing'
import { Wallet } from '../../../../../shared/type/domain.type'
import { ImportRepository } from '../../../../persistence/repository/import.repository'
import { WalletRepository } from '../../../../persistence/repository/wallet.repository'
import { ImportService } from '../../import.service'

Expand All @@ -24,6 +25,10 @@ describe('ImportService', () => {
privateKey: PRIVATE_KEY
})
}
},
{
provide: ImportRepository,
useValue: {}
}
]
}).compile()
Expand Down

0 comments on commit 7fb80ec

Please sign in to comment.