mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
15 lines
393 B
TypeScript
15 lines
393 B
TypeScript
import { expect, it } from 'vitest'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import AppleMusicButton from './AppleMusicButton.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('renders', () => {
|
|
expect(this.render(AppleMusicButton, {
|
|
props: {
|
|
url: 'https://music.apple.com/buy-nao'
|
|
}
|
|
}).html()).toMatchSnapshot()
|
|
})
|
|
}
|
|
}
|