ly-front/tests/unit/example.spec.js

13 lines
347 B
JavaScript
Raw Permalink Normal View History

2025-03-31 15:26:29 +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, {
propsData: { msg },
});
expect(wrapper.text()).toMatch(msg);
});
});