Skip to content

Commit a4c522b

Browse files
committed
bug: broken tests
1 parent 68f1846 commit a4c522b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/processors/test/strategy/easyRetroFunding/easyRetroFunding.handler.spec.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ describe("EasyRetroFundingStrategyHandler", () => {
155155
expect(ERFUpdatedRegistrationHandler.prototype.handle).toHaveBeenCalled();
156156
});
157157

158-
it.skip("calls RecipientStatusUpdatedHandler for RecipientStatusUpdated event", async () => {
158+
it("calls RecipientStatusUpdatedHandler for RecipientStatusUpdated event", async () => {
159159
const mockEvent = {
160160
eventName: "RecipientStatusUpdatedWithFullRow",
161161
} as ProcessorEvent<"Strategy", "RecipientStatusUpdatedWithFullRow">;
@@ -197,7 +197,7 @@ describe("EasyRetroFundingStrategyHandler", () => {
197197
expect(ERFTimestampsUpdatedHandler.prototype.handle).toHaveBeenCalled();
198198
});
199199

200-
it.skip("calls BaseDistributionUpdatedHandler for DistributionUpdated event", async () => {
200+
it("calls BaseDistributionUpdatedHandler for DistributionUpdated event", async () => {
201201
const mockEvent = {
202202
eventName: "DistributionUpdated",
203203
} as ProcessorEvent<"Strategy", "DistributionUpdated">;
@@ -218,7 +218,7 @@ describe("EasyRetroFundingStrategyHandler", () => {
218218
expect(BaseDistributionUpdatedHandler.prototype.handle).toHaveBeenCalled();
219219
});
220220

221-
it.skip("calls FundsDistributedHandler for FundsDistributed event", async () => {
221+
it("calls FundsDistributedHandler for FundsDistributed event", async () => {
222222
const mockEvent = {
223223
eventName: "FundsDistributed",
224224
} as ProcessorEvent<"Strategy", "FundsDistributed">;

0 commit comments

Comments
 (0)