0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added temporary fix for email suppression list error logs in tests

refs https://github.com/TryGhost/Team/issues/2598

In tests the model is undefined because the service is imported too early.
This commit is contained in:
Simon Backx 2023-02-22 19:13:52 +01:00
parent 7220be92e2
commit 94f5ad60c3

View file

@ -2,6 +2,7 @@ const {AbstractEmailSuppressionList, EmailSuppressionData, EmailSuppressedEvent}
const {SpamComplaintEvent, EmailBouncedEvent} = require('@tryghost/email-events');
const DomainEvents = require('@tryghost/domain-events');
const logging = require('@tryghost/logging');
const models = require('../../models');
/**
* @typedef {object} IMailgunAPIClient
@ -95,6 +96,7 @@ class MailgunEmailSuppressionList extends AbstractEmailSuppressionList {
}
async init() {
this.Suppression = models.Suppression;
const handleEvent = reason => async (event) => {
try {
if (reason === 'bounce') {