salix-front/tests/unit/example.spec.ts

13 lines
343 B
TypeScript
Raw Normal View History

2022-02-24 08:23:59 +00:00
import { shallowMount } from "@vue/test-utils";
import HelloWorld from "@/components/HelloWorld.vue";
describe("HelloWorld.vue", () => {
it("renders props.msg when passed", () => {
const msg = "new message";
const wrapper = shallowMount(HelloWorld, {
props: { msg },
});
expect(wrapper.text()).toMatch(msg);
});
});