mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
17 lines
470 B
TypeScript
17 lines
470 B
TypeScript
import { expect, it } from 'vitest'
|
|
import factory from '@/__tests__/factory'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import ProfileAvatar from './ProfileAvatar.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('renders', () => {
|
|
const user = factory('user', {
|
|
name: 'John Doe',
|
|
avatar: 'https://example.com/avatar.jpg'
|
|
})
|
|
|
|
expect(this.be(user).render(ProfileAvatar).html()).toMatchSnapshot()
|
|
})
|
|
}
|
|
}
|