This commit is contained in:
Oliver Davies 2021-01-16 14:56:42 +00:00
commit 53e32bad93
21 changed files with 10983 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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);
});
});