mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed webmentions test awaiting events
no issue The test was not waiting for dispatched events.
This commit is contained in:
parent
68ef33800c
commit
60670c21ce
1 changed files with 5 additions and 1 deletions
|
@ -4,6 +4,7 @@ const assert = require('assert');
|
|||
const urlUtils = require('../../../core/shared/url-utils');
|
||||
const nock = require('nock');
|
||||
const jobsService = require('../../../core/server/services/jobs');
|
||||
const DomainEvents = require('@tryghost/domain-events/lib/DomainEvents');
|
||||
|
||||
describe('Webmentions (receiving)', function () {
|
||||
let agent;
|
||||
|
@ -24,7 +25,8 @@ describe('Webmentions (receiving)', function () {
|
|||
emailMockReceiver = mockManager.mockMail();
|
||||
});
|
||||
|
||||
afterEach(function () {
|
||||
afterEach(async function () {
|
||||
await DomainEvents.allSettled();
|
||||
mockManager.restore();
|
||||
});
|
||||
|
||||
|
@ -126,6 +128,7 @@ describe('Webmentions (receiving)', function () {
|
|||
.expectStatus(202);
|
||||
|
||||
await processWebmentionJob;
|
||||
await DomainEvents.allSettled();
|
||||
|
||||
const users = await models.User.findAll();
|
||||
users.forEach(async (user) => {
|
||||
|
@ -162,6 +165,7 @@ describe('Webmentions (receiving)', function () {
|
|||
.expectStatus(202);
|
||||
|
||||
await processWebmentionJob;
|
||||
await DomainEvents.allSettled();
|
||||
|
||||
emailMockReceiver.sentEmailCount(0);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue