1
0
Fork 0

Fix tests

This commit is contained in:
Chocobozzz 2023-03-10 15:45:31 +01:00
parent 3cda7efaaa
commit 2b02a9b98c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 4 additions and 2 deletions

View File

@ -209,7 +209,7 @@ async function register ({ registerHook, registerSetting, settingsManager, stora
registerHook({
target: 'filter:activity-pub.activity.context.build.result',
handler: context => context.concat([ 'https://example.com/new-context' ])
handler: context => context.concat([ { recordedAt: 'https://schema.org/recordedAt' } ])
})
registerHook({

View File

@ -853,7 +853,9 @@ describe('Test plugin filter hooks', function () {
const { body } = await makeActivityPubGetRequest(servers[0].url, '/w/' + videoUUID)
expect(body.type).to.equal('Video')
expect(body['@context'].some(c => c === 'https://example.com/new-context')).to.be.true
expect(body['@context'].some(c => {
return typeof c === 'object' && c.recordedAt === 'https://schema.org/recordedAt'
})).to.be.true
})
it('Should run filter:activity-pub.video.json-ld.build.result', async function () {