mirror of
https://github.com/koel/koel
synced 2024-12-20 17:43:36 +00:00
17 lines
482 B
TypeScript
17 lines
482 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>('user', {
|
|
name: 'John Doe',
|
|
avatar: 'https://example.com/avatar.jpg'
|
|
})
|
|
|
|
expect(this.actingAs(user).render(ProfileAvatar).html()).toMatchSnapshot()
|
|
})
|
|
}
|
|
}
|