Formatting.

This commit is contained in:
2020-12-15 20:35:15 +01:00
parent 07b3831d31
commit 63e87bbc87

View File

@@ -6,7 +6,9 @@ describe("HelloWorld.vue", () => {
test("renders props.msg when passed", () => {
const msg = "new message"
const wrapper = shallowMount(HelloWorld, {
propsData: { msg }
propsData: {
msg
}
});
expect(wrapper.text()).toMatch(msg)