mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Add video caption created and deleted hooks
This commit is contained in:
@@ -103,6 +103,20 @@ describe('Test plugin action hooks', function () {
|
||||
})
|
||||
})
|
||||
|
||||
describe('Captions hooks', function () {
|
||||
it('Should run action:api.video-caption.created', async function () {
|
||||
await servers[0].captions.add({ videoId: videoUUID, language: 'en', fixture: 'subtitle-good.srt' })
|
||||
|
||||
await checkHook('action:api.video-caption.created')
|
||||
})
|
||||
|
||||
it('Should run action:api.video-caption.deleted', async function () {
|
||||
await servers[0].captions.delete({ videoId: videoUUID, language: 'en' })
|
||||
|
||||
await checkHook('action:api.video-caption.deleted')
|
||||
})
|
||||
})
|
||||
|
||||
describe('Users hooks', function () {
|
||||
let userId: number
|
||||
|
||||
|
||||
Reference in New Issue
Block a user