Skip to content

Commit

Permalink
fix: what
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarranzav committed Feb 21, 2025
1 parent 423e6d0 commit 5c0cb50
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
TapCollector,
createIndexerManagementClient,
Operator,
ActionManager,
} from '@graphprotocol/indexer-common'
import {
connectDatabase,
Expand Down Expand Up @@ -73,6 +74,7 @@ jest.spyOn(TapCollector.prototype, 'startRAVProcessing').mockImplementation(() =
const startCollectionLoop = jest
.spyOn(DipsCollector.prototype, 'startCollectionLoop')
.mockImplementation(() => {})
jest.spyOn(ActionManager.prototype, 'monitorQueue').mockImplementation(async () => {})
const setup = async () => {
logger = createLogger({
name: 'DIPs Test Logger',
Expand Down Expand Up @@ -134,6 +136,7 @@ const teardownEach = async () => {
await queryFeeModels.transferReceipts.truncate({ cascade: true })
await queryFeeModels.transfers.truncate({ cascade: true })
await queryFeeModels.allocationSummaries.truncate({ cascade: true })
await queryFeeModels.scalarTapReceipts.truncate({ cascade: true })

// Clear out indexer management models
await managementModels.Action.truncate({ cascade: true })
Expand Down

0 comments on commit 5c0cb50

Please sign in to comment.