天波h5前端应用
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

13 lines
347B

  1. import { shallowMount } from "@vue/test-utils";
  2. import HelloWorld from "@/components/HelloWorld.vue";
  3. describe("HelloWorld.vue", () => {
  4. it("renders props.msg when passed", () => {
  5. const msg = "new message";
  6. const wrapper = shallowMount(HelloWorld, {
  7. propsData: { msg },
  8. });
  9. expect(wrapper.text()).toMatch(msg);
  10. });
  11. });