koel/resources/assets/js/services/youTubeService.spec.ts

27 lines
651 B
TypeScript
Raw Normal View History

2022-05-13 17:58:38 +00:00
import { eventBus } from '@/utils'
import factory from '@/__tests__/factory'
import { expect, it } from 'vitest'
import UnitTestCase from '@/__tests__/UnitTestCase'
import { youTubeService } from './youTubeService'
new class extends UnitTestCase {
protected test () {
it('plays a video', () => {
const video = factory('video', {
2022-05-13 17:58:38 +00:00
id: {
videoId: 'foo',
2022-05-13 17:58:38 +00:00
},
snippet: {
title: 'Bar',
},
2022-05-13 17:58:38 +00:00
})
const emitMock = this.mock(eventBus, 'emit')
youTubeService.play(video)
expect(emitMock).toHaveBeenCalledWith('PLAY_YOUTUBE_VIDEO', { id: 'foo', title: 'Bar' })
})
}
}