13 lines
445 B
TypeScript
13 lines
445 B
TypeScript
import { expect } from "chai"
|
|
import { shallowMount } from "@vue/test-utils"
|
|
|
|
import Avatar from "@/components/Avatar.vue"
|
|
|
|
describe("Avatar.vue", () => {
|
|
// Not working due to Vue bug https://github.com/vuejs/vue-next/issues/3590
|
|
it.skip("Renders component", () => {
|
|
const profile = { avatar: "https://test.com" }
|
|
const wrapper = shallowMount(Avatar as any, { props: { profile } })
|
|
expect(wrapper.text()).to.include("")
|
|
})
|
|
})
|